/*-----------------------------------*\ 
  #style.css
\*-----------------------------------*/

/**
 * copyright 2024 @fptech 
 */





/*-----------------------------------*\ 
  #CUSTOM PROPERTY
\*-----------------------------------*/


.light-theme {

  /**
   * light theme colors 
   */

  --background-primary: hsl(218, 19%, 84%);
  --background-secondary: hsl(217, 29%, 91%);
  /* --background-header: hsl(230, 30%, 14%, 1); */
  --background-header: hsl(214, 20%, 69%);
  --background-footer: hsl(214, 20%, 69%);
  --background-primary-revert: hsl(218, 23%, 23%);

  --action-primary: hsl(214, 32%, 91%);
  --action-secondary: hsl(210, 38%, 95%);

  --foreground-primary: hsl(218, 23%, 23%);
  --foreground-secondary: hsl(216, 15%, 52%);
  --foreground-tertiary: hsl(214, 20%, 69%);
  --foreground-text: hsl(214, 14%, 30%);

  --accent: hsl(229, 76%, 66%);

}

/* .dark-theme { */

  /**
   * dark theme colors 
   */

  /* --background-primary: hsl(230, 30%, 14%, 1);
  --background-secondary: hsl(230, 30%, 14%, 1);
  --background-header: hsl(230, 30%, 14%);
  --background-footer: hsl(230, 3%, 45%, 1);
  --background-primary-revert: hsl(0, 22%, 96%);

  --action-primary: hsl(216, 15%, 52%);
  --action-secondary: hsl(218, 23%, 23%);

  --foreground-primary: hsl(210, 38%, 95%);
  --foreground-secondary: hsl(211, 25%, 84%);
  --foreground-tertiary: hsl(214, 20%, 69%);
  --foreground-text: hsl(214, 36%, 91%);

  --accent: hsl(229, 76%, 66%);

} */


.dark-theme {

  /**
   * dark theme colors 
   */

  --background-primary: hsl(218, 23%, 23%);
  --background-secondary: hsl(220, 27%, 17%);
  --background-header: hsl(230, 30%, 14%);
  /* --background-footer: hsl(240, 3%, 35%); */
  --background-footer: hsl(230, 30%, 14%);
  --background-primary-revert: hsl(0, 22%, 96%);
  --action-primary: hsl(216, 15%, 52%);
  --action-secondary: hsl(218, 23%, 23%);
  --foreground-primary: hsl(210, 38%, 95%);
  --foreground-secondary: hsl(211, 25%, 84%);
  --foreground-tertiary: hsl(214, 20%, 69%);
  --foreground-text: hsl(214, 36%, 91%);
  --accent: hsl(229, 76%, 66%);

}

:root {
  

  /**
   * color
   */

  --white: hsl(0, 0%, 100%);

  /**
   * typography 
   */

  --fs-base: 0.85rem;
  --fs-1: 1.875rem;
  --fs-2: 1.5rem;
  --fs-3: 1.25rem;
  --fs-4: 0.875rem;
  --fs-5: 0.75rem;
  --fs-6: 0.6rem;

  /**
   * spacing 
   */

  --py: 3rem;

}





/*-----------------------------------*\ 
  #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin:  0;
  padding: 0;
  box-sizing: border-box;
}

a { text-decoration: none; }

li { list-style: none; }

img, button { display: block; }

a, span { display: inline-block; }

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

html {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-base); /* base font-size (0.85rem = 13.6px) */
  line-height: 1.4;
}

:focus { outline-offset: 4px; }


/**
 * scrollbar style
 */

::-webkit-scrollbar { width: 22px; }


::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 20px;
  border: 4px solid;
}

.light-theme::-webkit-scrollbar-thumb { border-color: hsl(0, 0%, 90%); }

.dark-theme::-webkit-scrollbar-thumb { border-color: hsl(219, 27%, 20%); }

.light-theme::-webkit-scrollbar-track { background: hsl(0, 0%, 90%); }

.dark-theme::-webkit-scrollbar-track { background: hsl(219, 27%, 20%); }


/*-----------------------------------*\ 
  #BASE STYLE
\*-----------------------------------*/

.h1,
.h2,
.h3,
.h4 {
  display: block;
  color: var(--foreground-primary);
}

.h1 {
  font-size: var(--fs-1);
  font-weight: 900;
}

.h2 {
  font-size: var(--fs-2);
  font-weight: 700;
}

.h3 {
  font-size: var(--fs-3);
  font-weight: 700;
}

.h4 {
  font-size: var(--fs-4);
  font-weight: 700;
}

.text-sm { font-size: var(--fs-4); }

.text-tiny { font-size: var(--fs-5); }


/* Scroll to top button styling */
.scroll-to-top-btn {
  position: fixed; /* Fixed position */
  bottom: 20px; /* Distance from the bottom */
  right: 250px; /* Distance from the right */
  display: none; /* Hidden by default */
  padding: 10px 15px;
  background-color: var(--background-primary-revert);
  color: var(--action-primary);
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000; /* Ensure it is above other elements */
}


/*-----------------------------------*\ 
  #REUSED STYLE
\*-----------------------------------*/

.container {
  margin-inline: auto;
  margin: 20px; /* fallback for margin-inline */
  padding: 0 15px;
}

.btn {
  min-width: 10rem;
  border-radius: 100px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 0.6875rem 1.1875rem;
}

.btn-primary:hover {
  background: var(--foreground-secondary);
  color: var(--action-primary);
}

.btn-secondary {
  background: var(--action-secondary);
  color: var(--foreground-secondary);
  padding: 0.5rem 1rem;
  border: 3px solid var(--foreground-tertiary);
}

.btn-secondary:hover { border-color: var(--accent); }


/*-----------------------------------*\ 
  #Extra style for dark theme
\*-----------------------------------*/

.dark-theme .btn-primary:hover { color: var(--background-primary); }

.dark-theme .blog-topic {
  background: var(--action-primary);
  color: var(--foreground-secondary);
}

.dark-theme .blog-topic:hover {
  background: var(--foreground-primary);
  color: var(--action-primary);
}

.dark-theme .load-more-btn:hover { color: var(--white); }

.dark-theme .aside .h2 { color: var(--foreground-primary); }




/*-----------------------------------*\ 
  #HEADER
\*-----------------------------------*/

header { background: var(--background-header); }

header .flex-wrapper { display: none; }

.navbar {
  
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  gap: 15px;
  padding: 5px 0;
  position: sticky;
}

.logo-light,
.logo-dark { display: none; }

.light-theme .logo-light,
.dark-theme .logo-dark { display: block; }

header .btn-group {
  display:     flex;
  align-items: center;
  gap: 5px;
  padding-right: 10px;
}

a {
  color: var(--foreground-text);
}

.theme-btn-mobile,
.nav-menu-btn,
.nav-close-btn {
  background: var(--action-secondary);
  color: var(--foreground-tertiary);
  width:  40px;
  height: 40px;
  display:         flex;
  justify-content: center;
  align-items:     center;
  border-radius: 50%;
  font-size: 25px;
}

:is(.theme-btn-mobile,
.nav-menu-btn,
.nav-close-btn):hover {
  background: var(--accent);
  color: var(--white);
}

.theme-btn-mobile ion-icon { display: none; }

.theme-btn-mobile.light .sun,
.theme-btn-mobile.dark .moon { display: block; }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--background-primary);
  padding: 70px 20px;
  overflow: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: 0.5s cubic-bezier(1, 0, 0.30, 0.70);
  z-index: 10;
}

.mobile-nav.active {
  transform: translateX(0);
  visibility: visible;
}

.nav-close-btn {
  position: absolute;
  top:   20px;
  right: 20px;
}

.mobile-nav .wrapper {
  padding-bottom: 0.5rem;
  margin-bottom:  0.5rem;
  border-bottom: 1px solid var(--action-primary);
}

.mobile-nav .nav-items {
  padding-bottom: 0.5rem;
  margin-bottom:  0.5rem;
  color: var(--foreground-secondary);
  border-bottom: 1px solid var(--action-primary);
  font-size: 20px;
}

.mobile-nav .nav-items-tags {
  color: var(--foreground-secondary);
}

.mobile-nav .nav-title { margin-bottom: 1rem; }

.mobile-nav .nav-item { margin-bottom: 0.3rem; }

.mobile-nav .nav-link {
  font-size: var(--fs-3);
  color: var(--foreground-secondary);
}

.mobile-nav .nav-link:hover { color: var(--accent); }

.header-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--foreground-text);
}

/* Search container styling */
.search-container {
  position: relative;
}

/* Search icon styling */
.search-icon {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Search input styling */
.search-input {
  display: none; /* Hidden by default */
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Show search input when active */
.search-input.active {
  display: block;
}

/* Results container styling */
.results-container {
  margin-top: 60px; /* Adjust to ensure it doesn't overlap with the header */
  padding: 20px;
}

.result {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

/* Add the following CSS for the search results pop-up */

.search-results-popup {
  display: none; /* Hidden by default */
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
  justify-content: center;
  align-items: center;
}

.search-results-content {
  background-color: var(--background-primary);
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  max-height: 80%;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-popup {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.close-popup:hover {
  color: red;
}



/*-----------------------------------*\ 
  #HERO SECTION
\*-----------------------------------*/
.offers-slideshow-container-and-dots {
  background: var(--background-primary);
  padding-top: 30px;
  justify-content: center;
}

.unique-slideshow-container {
  /* position: relative; */
  background: var(--background-primary);
  /* max-width: 1000px; */
  margin: auto;
  overflow: hidden;
}

.unique-slide {
  display: none;
  position: relative;
}

.unique-slide img {
  width: 130%;
  height: auto;
  max-width: 800px;
  margin-left: 550px;
}


.unique-caption {
  color: var(--foreground-primary);
  font-size: 18px;
  text-align: center;
  padding: 8px;
  bottom: 8px;
  font-size: var(--fs-3);
  font-weight: 700;
  color: var(--foreground-primary);
  margin-top: 20px;
}

.unique-prev, .unique-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.unique-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.unique-prev:hover, .unique-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.unique-dots-container {
  text-align: center;
  margin-top: 16px;
}

.unique-dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.unique-active, .unique-dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}




#hidden { display: none; }

.hero {
  background: var(--background-primary);
  padding-top:    2rem;
  padding-bottom: var(--py);
  text-align: center;
}

.hero .h1 {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero b {
  color: var(--accent);
  font-weight: inherit;
}

.hero .h3 {
  color: var(--foreground-secondary);
  margin-bottom: 2rem;
}

.hero .btn-group {
  display:         flex;
  justify-content: center;
  flex-wrap:       wrap;
  gap: 15px;
  text-align: center;
}

/* .slideshow-controls {
  padding-right: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
} */


.hero .right { display: none; }

.slideshow-class {
  padding: 0 30px;
}

#slide {
  margin: auto;
  width: 25%;
  height: 15rem;
}

/* #slideSec {
  margin: auto;
  width: 25%;
  height: 15rem;
} */

#slide-caption{
  font-size: var(--fs-3);
  font-weight: 700;
  color: var(--foreground-primary);
}

.slideshow-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.slideshow-indicators {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

/* .indicator {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
} */

/* .indicator.active {
  background-color: #333;
} */

/* Style for the slideshow container */
.slideshow-container {
  /* position: relative; */
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

/* Style for the slideshow container */
.offers-slideshow-container {
  /* position: relative; */
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.responsive {
  width: 100%;
  height: auto;
}

.slide-btn {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

.indicator-container {
  text-align: center;
  margin-top: 10px;
  overflow: hidden; /* Hide extra circles */
  max-height: 30px; /* Adjust height to fit 7 circles */
}

.indicator-container-sec {
  text-align: center;
  margin-top: 10px;
  overflow: hidden; /* Hide extra circles */
  max-height: 30px; /* Adjust height to fit 7 circles */
}

.indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.indicator-sec {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.indicator.active {
  background-color: #717171;
}

.indicator-sec.active {
  background-color: #717171;
}

/* Hide the 8th and beyond circles */
.indicator-container .indicator.hide {
  display: none;
}

.indicator-container.showing {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

/* Add this if you want to see the touch feedback effect */
.slide-btn:active {
  background-color: rgba(0, 0, 0, 0.8);
}




/*-----------------------------------*\ 
  #BLOG SECTION
\*-----------------------------------*/

section p {
  padding-bottom: 15px;
}

article p {
  padding-bottom: 15px;
}

.main {
  background: var(--background-secondary);
  /* padding: var(--py) 0; */
  padding-bottom: 40px;
}

article {
  color: var(--foreground-text);
}

.blog {
  margin-bottom: 60px;
}

.blog .h2 {
  line-height: 1.3;
  margin-bottom: 3rem;
  text-align: center;
}

.blog-card-group {
  margin-bottom: 3rem;
  width: 85%;
  padding-left: 0px;
}

.home-blog-card-group {
  margin-bottom: 3rem;
  width: 98%;
  padding-left: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px
}

.main-blog-card-group {
  margin-bottom: 3rem;
  width: 98%;
  padding-left: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px
}

.slideshow-blog-card-group {
  margin-bottom: 3rem;
  width: 85%;
  padding-left: 0px; 
}

.blog-card {
  background: var(--background-primary);
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 30px;
  box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
  transition: 0.25s ease;
  max-width: 350px;
}

.main-blog-card {
  background: var(--background-primary);
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 30px;
  box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
  transition: 0.25s ease;
  max-width: 350px;
}

.blog-card p {
  color: var(--background-primary-revert);
  font-size: larger;
}

.blog-card-item {
  background: var(--background-primary);
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 30px;
  box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
  transition: 0.25s ease;
  max-width: 150px;
}

.blog-card-item p {
  color: var(--background-primary-revert);
  font-size: larger;
}


/* .blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.1);
} */

/* .blog-card-banner { display: none; } */

.blog-content-wrapper { padding: 5px 5px; }

.blog-topic {
  background: var(--action-secondary);
  color: var(--foreground-secondary);
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.blog-topic:hover {
  background: var(--foreground-secondary);
  color: var(--action-secondary);
}

.blog-card .h3 {
  line-height: 1.4;
  margin-bottom: 1rem;
}

.blog-card .h3:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.blog-card-item .h3 {
  line-height: 1.4;
  margin-bottom: 1rem;
}

.blog-card-item .h3:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.blog-text,
.web-blog-text,
.profile-wrapper { display: none; }

.blog .wrapper {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  flex-wrap:       wrap;
  gap: 15px;
}

.blog .h4 { color: var(--foreground-secondary); }

.blog .h4:hover { color: var(--accent); }

.blog .text-sm {
  display:     flex;
  align-items: center;
  gap: 5px;
  color: var(--foreground-tertiary);
}

.blog .separator {
  background: var(--foreground-tertiary);
  margin-inline: 3px;
  margin: 0 3px; /* fallback for margin-inline */
  width:  3px;
  height: 3px;
  border-radius: 3px;
}

.blog ion-icon { --ionicon-stroke-width: 50px; }

.load-more-btn {
  margin-inline: auto;
  margin: auto; /* fallback for margin-inline */
  background: var(--foreground-secondary);
  color: var(--background-secondary);
  padding: 0.6875rem 1.1875rem;
}

.load-more-btn:hover { background: var(--accent); }

.header-affiliate-links {
  text-align: center;
  display: flex;
  gap: 80px;
}

.navbar.a {
  color: var(--foreground-text);
}

.affiliate-links {
  background: oldlace;
  text-align: center;
}

.tg  {border-collapse:collapse;border-spacing:0;}
.tg td {
  border-color:black;
  border-style:solid;
  border-width:1px;
  font-family:Arial, sans-serif;
  font-size:14px;
  overflow:hidden;
  padding:10px 5px;
  word-break:normal;
}
.tg th {
  border-color:black;
  border-style:solid;
  border-width:1px;
  font-family:Arial, sans-serif;
  font-size:14px;
  font-weight:normal;overflow:hidden;
  padding:10px 5px;
  word-break:normal;
}
.tg .tg-cly1 {
  text-align:left;
  vertical-align:middle
}
.tg .tg-1wig {
  font-weight:bold;
  text-align:left;
  vertical-align:top}
.tg .tg-amwm {
  font-weight:bold;
  text-align:center;
  vertical-align:top}
table {margin-bottom: 30px;}

.contact-send-button {
  font-size: 30px;
}

.contact-social-media-links {
  display: flex;
  justify-content: space-evenly;
}

/*-----------------------------------*\ 
  #COMMENTS
\*-----------------------------------*/

#commentdiv {
  background-color: rgb(226, 237, 237);
  margin-top: 50px;
  padding: 25px;
}


#commentform {
  display: flex;
  flex-direction: column;
}

#commentdiv input,
#commentdiv textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

#commentdiv button {
  padding: 10px;
  border: none;
  background-color: #58ac6c;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

#commentdiv button:hover {
  background-color: #28893d;
}

#comments-container {
  margin-top: 20px;
}

.comment {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.comment h4 {
  margin: 0px;
}

.comment p {
  padding: 0px;
}

.comment textarea {
  font-size: 10px;
}



/*-----------------------------------*\ 
  #ASIDE
\*-----------------------------------*/

.aside { display: none; }






/*-----------------------------------*\ 
  #FOOTER
\*-----------------------------------*/

footer { background: var(--background-footer); }

footer .container {
  padding: var(--py) 15px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

footer .wrapper { text-align: center; }

.footer-logo { 
  margin-bottom: 20px;
}

.footer-text {
  color: var(--foreground-secondary);
  /* max-width: 300px; */
  margin-inline: auto;
  margin: auto; /* fallback for margin-inline */
}

.footer-title {
  color: var(--foreground-primary);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.footer-link { color: var(--foreground-text); }

.footer-link:hover { color: var(--accent); }

.copyright {
  color: var(--foreground-secondary);
  font-size: var(--fs-4);
  text-align: center;
  padding-left: 50px;
  width: 75%;
}

.copyright-hr {
  margin-left: 30px;
  width: 80%;
  height: 1px;
  color: var(--action-primary);
}

.copyright a {
  color: var(--accent);
  font-weight: 500;
}

.copyright a:hover { text-decoration: underline; }


#slide-link {
  display: block;
}


.footer-logo {
  max-width: 200px;
  max-height: 100px;
}

.footer-social-media-links {
  .footer-logo {
    max-width: 100px;
    max-height: 50px;
  }
}

/*-----------------------------------*\ 
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 250px screen
 */

 @media (min-width: 250px) {

  :root {

    /**
     * typography 
     */

    --fs-1: 2.25rem;

  }



  /**
   * REUSED STYLE 
   */

   /* body {
    max-width: 800px;
   } */

  .container { 
    padding: 5px 0px 0px 0px;
    margin: 0px 0px 0px 15px;
    
  }



  /**
   * HEADER 
   */

   header {
    position: sticky;
    top: 0px;
   }

  .navbar { 
    padding: 5px 0; 
    position: sticky;
    gap: 5px;
  }

  .header-affiliate-links {
    text-align: center;
    display: flex;
    flex-direction: row ;
    gap: 2px;
    font-size: var(--fs-6);
    padding-top: 10px;
  }

  .unique-slide img {
    width: 80%;
    height: 80px;
    max-width: 800px;
    margin-left: 35px;
  }

  .unique-caption {
    margin-top: 0px;
    padding-bottom: 0px;
  }

  .blog-card-group {
    margin-bottom: 3rem;
    width: 97%;
    padding-left: 0px;
    padding-right: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .home-blog-card-group {
    margin-bottom: 3rem;
    width: 98%;
    padding-left: 0px;
    padding-right: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .main-blog-card-group {
    margin-bottom: 3rem;
    width: 99%;
    padding-left: 0px;
    /* padding-right: 5px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .hero {
    padding-top:    20px;
    padding-bottom: 20px;
    text-align: center;
  }

  .mobile-nav .nav-items p {
    width: 90%;
  }


  .scroll-to-top-btn {
    right: 25px; /* Distance from the right */
    margin-bottom: 70px;
  }

  .logo-light,
  .logo-dark { 
    height: 45px;
    width: 55px; 
  }

  .slideshow-controls {
    display: flex;
    justify-content: center;
    padding-right: 0px;
  }

  .header-title {
    font-size: 15px;
  }

  #nav-item-explanation {
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .slide-btn {
    margin: 0px 10px;
  }

  .navbar,
  .blog-text,
  .web-blog-text {
    font-size: var(--fs-6);
  }



  /**
   * BLOG 
   */

   /* .main .container {
    display: grid;
    grid-template-columns: 5fr 2fr;
    gap: 50px;
    width: 300px;
  } */

  .blog .h2 {
    position: relative;
    text-align: left;
    padding-left: 4rem;
    margin-bottom: 10px;
  }

  #home-topic-img {
    width: 85%;
    margin: auto;
  }

  #main-topic-img {
    width: 90%;
    margin: auto;
  }

  iframe {
    width: 90%;
    height: 17rem;
    padding-left: 30px;
  }

  /* .blog .h2::before {
    content: '';
    position: absolute;
    top:  0;
    left: 0;
    background: var(--action-primary);
    width:  5px;
    height: 100%;
    border-radius: 5px;
  } */

  .blog-text,
  .web-blog-text,
  .profile-wrapper { display: block; }

  #slide-caption {
    text-align: center;
    margin-top: 15px;
    margin-right: 20px;
    margin-left: 20px;
    font-size: var(--fs-4);
    font-weight: 500;
    color: var(--foreground-primary);
    padding-bottom: 10px;
  }

  .main-blog-card {
    max-width: 180px;
  }

  #slide {
    margin: auto;
    width: 90%;
    height: 9rem;
  }
  
  #slideSec {
    margin: auto;
    width: 90%;
    height: 9rem;
  }

  .blog {
    margin-bottom: 0px;
  }

  .blog-text {
    color: var(--foreground-secondary);
    font-size: var(--fs-4);
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .web-blog-text {
    color: var(--foreground-secondary);
    font-size: var(--fs-4);
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .blog .wrapper-flex {
    display:         flex;
    justify-content: start;
    align-items:     center;
    gap: 10px;
  }

  .profile-wrapper {
    width:  56px;
    height: 56px;
    background: var(--action-primary);
    padding: 3px;
    border-radius: 50%;
  }

  .profile-wrapper img { border-radius: 50%; }

  .blog .wrapper {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }

  .blog-banner-img {
    width:  50%;
    height: 50%;
    object-fit: cover;
    margin: auto;
  }

  .offers-blog-card-group {
    margin-bottom: 3rem;
    width: 97%;
    padding-left: 0px;
    padding-right: 5px;
  }

  textarea {
    width: 100%;
    height: 150px;
    font-size: 15px;
  }

  .textarea-title {
    width: 100%;
    height: 25px;
    font-size: 15px;
  }


  .contact-social-media-links {
    display: grid;
    grid-template-columns: 3fr 3fr 3fr;
    gap: 10px;
  }

  .contact-blog-card {
    background: var(--background-primary);
    padding: 10px;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
    transition: 0.25s ease;
    height: 500px;
    width: 290px;
  }

#smallchars {
  font-size: 5px;
}
  .contact-send-button {
    font-size: 17px;
  }

  /**
   * FOOTER 
   */

  footer .container {
    padding: var(--py) 30px;
    grid-template-columns: 2fr;
  }

  footer .wrapper { text-align: left; }

  .footer-text { margin: 0; }

  .copyright {
    padding-left: 45px;
  }

  .footer-social-media-links {
    display: flex;
    font-size: 5px;
  }

  .footer-social-media-links a {
    padding-right: 30px;
  }


}


/**
 * responsive for larger than 400px screen
 */

 @media (min-width: 350px) {

  :root {

    /**
     * typography 
     */

    --fs-1: 2.25rem;

  }

  #slide-caption{
    text-align: center;
    margin-top: 15px;
    margin-right: 15px;
    margin-left: 15px;
    font-size: var(--fs-4);
    font-weight: 500;
    color: var(--foreground-primary);
    padding-bottom: 10px;
 }
 
 #slide {
  margin: auto;
  width: 90%;
  height: 11rem;
}
 
#slideSec {
  margin: auto;
  width: 90%;
  height: 11rem;
}



  /**
   * REUSED STYLE 
   */

  .container { 
    padding: 5px 0px 0px 0px;
    margin: 0px 0px 0px 15px;
  }



  /**
   * HEADER 
   */

   .navbar { 
    padding: 5px 0; 
    position: sticky;
    gap: 10px;
    /* padding-right: 20px; */
  }

  .header-affiliate-links {
    text-align: center;
    display: flex;
    flex-direction: row ;
    gap: 10px;
    font-size: var(--fs-5);
    padding-top: 10px;
  }

  .mobile-nav .nav-items p {
    width: 80%;
  }
  
  .header-title {
    font-size: 20px;
  }

  .slide-btn {
    margin: 0px 10px;
  }

  .navbar,
  .web-blog-text
  .blog-text {
    font-size: var(--fs-5);
  }


  #contact .container {
    margin-left: 0px;
    padding-left: 0px;
    /* width: 320px; */
  }



  /**
   * BLOG 
   */


  .blog .h2 {
    position: relative;
    text-align: left;
    padding-left: 10px;
    margin: 10px 0px;
    margin-left: 90px;
  }

  /* .blog .h2::before {
    content: '';
    position: absolute;
    top:  0;
    left: 0;
    background: var(--action-primary);
    width:  5px;
    height: 100%;
    border-radius: 5px;
  } */

  .blog-text,
  .web-blog-text,
  .profile-wrapper { display: block; }

  .blog-text {
    color: var(--foreground-secondary);
    font-size: var(--fs-4);
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
  }


  .web-blog-text {
    color: var(--foreground-secondary);
    font-size: var(--fs-4);
    /* display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; */
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .blog .wrapper-flex {
    display:         flex;
    justify-content: start;
    align-items:     center;
    gap: 10px;
  }

  .profile-wrapper {
    width:  56px;
    height: 56px;
    background: var(--action-primary);
    padding: 3px;
    border-radius: 50%;
  }

  .profile-wrapper img { border-radius: 50%; }

  .blog .wrapper {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
  
  .blog-banner-img {
    width:  50%;
    height: 50%;
    object-fit: cover;
    margin: auto;
  }

  .blog-card-group {
    margin-bottom: 3rem;
    width: 100%;
    padding-left: 0px;
    padding-right: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .offers-blog-card-group {
    margin-bottom: 3rem;
    width: 100%;
    padding-left: 0px;
    padding-right: 15px;
  }


  textarea {
    width: 90%;
    height: 150px;
    font-size: 16px;
  }

  .textarea-title {
    width: 90%;
    height: 20px;
    font-size: 16px;
  }

  .contact-blog-card {
    background: var(--background-primary);
    padding: 10px;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
    transition: 0.25s ease;
    height: 520px;
    width: 345px;
  }


  .contact-send-button {
    font-size: 17px;
  }

  #home-topic-img {
    width: 85%;
    margin: auto;
  }



  /**
   * FOOTER 
   */

  footer .container {
    padding: var(--py) 30px;
    grid-template-columns: 2fr;
  }

  footer .wrapper { text-align: left; }

  .footer-text { margin: 0; }

  .copyright {
    padding-left: 60px;
  }

  .footer-social-media-links {
    display: flex;
    font-size: 5px;
  }

  .footer-social-media-links a {
    padding-right: 30px;
  }
}




/**
 * responsive for larger than 415px screen
 */

@media (min-width: 415px) {
  .container {
    padding: 5px 0px 5px 0px;
    max-width: 380px; 
    /* padding-left: 50px; */
  }

  .home-blog-card-group {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .main-blog-card-group {
    grid-template-columns: 1fr 1fr;
  }

  .main-blog-card {
    max-width: 190px;
  }

  .blog-card-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-blog-card {
    width: 395px;
  }

  .scroll-to-top-btn {
    right: 30px; /* Distance from the right */
    margin-bottom: 90px;
  }

  footer .container {
    padding: var(--py) 30px;
    grid-template-columns: 2fr;
  }

  .footer-social-media-links {
    display: flex;
    font-size: 5px;
  }

  .footer-social-media-links a {
    padding-right: 30px;
  }
}







/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE 
   */

  .container { 
    max-width: 750px;
    display: block;
  }

   .header-affiliate-links {
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 20px;
  }

  .navbar { 
    padding: 5px 0; 
    position: sticky;
    padding-right: 15px;
    padding-left: 15px;
  }

  .header-affiliate-links {
    text-align: center;
    display: flex;
    flex-direction: row ;
    gap: 35px;
    font-size: 2px;
    font-size: var(--fs-4);
    padding-top: 10px;
  }

  .mobile-nav .nav-items p {
    width: 50%;
  }

  .unique-slide img {
    width: 80%;
    height: 110px;
    max-width: 700px;
    margin-left: 100px;
  }

  .unique-caption {
    margin-top: 0px;
    padding-bottom: 0px;
    font-size: var(--fs-3);
  }


  .home-blog-card-group {
    margin-bottom: 3rem;
    width: 97%;
    padding-left: 0px;
    padding-right: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 8px
  }

  .main-blog-card-group {
    margin-bottom: 3rem;
    width: 80%;
    padding-left: 0px;
    padding-right: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
  }

  .main-blog-card {
    max-width: 380px;
  }


  .contact-social-media-links {
    display: flex;
    justify-content: space-around;
  }

  .home-blog {
    padding-top: 30px;
    width: 115%;
    margin-left: 40px;
  }

  .blog .h2 {
    padding-left: 20rem;
    margin: 15px 0px;
  }

  /* .blog .h2::before {
    margin-left: 30px;
  } */

  .blog-banner-img {
    width:  50%;
    height: 50%;
    padding-left: 100px;
    object-fit: cover;
    margin: auto;
  }

  /* .blog-card {
    max-width: 140px;
  } */

  .blog-card-item {
    max-width: 300px;
  }

  #slide-caption{
    text-align: center;
    margin-top: 20px;
    margin-right: 160px;
    margin-left: 160px;
    font-size: var(--fs-4);
    font-weight: 500;
    color: var(--foreground-primary);
  }

 .slideshow-controls {
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  }
 
  #slide {
    width: 95%;
    height: 21rem;
  }
  
  #slideSec {
    width: 95%;
    height: 21rem;
  }


  .slide-btn {
    margin: 0px 230px;
  }

 .blog-card-group {
    margin-bottom: 3rem;
    width: 97%;
    padding-left: 13px;
    gap:10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .offers-blog-card-group {
    margin-bottom: 3rem;
    width: 97%;
    padding-left: 13px;
  }

  textarea {
    width: 95%;
    height: 150px;
    font-size: 18px;
  }

  .textarea-title {
    width: 95%;
    height: 30px;
    font-size: 18px;
  }

  .contact-send-button {
    font-size: 20px;
  }

  .contact-blog-card {
    background: var(--background-primary);
    padding: 10px;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
    transition: 0.25s ease;
    height: 550px;
    width: 710px;
  }

  .slideshow-indicators {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
  }

  .header-title {
    font-size: 25px;
  }

  #home-topic-img {
    width: 100%;
    margin: auto;
  }

  #web3-topic-img {
    width: 35%;
    margin-left: 210px;
  }

  .navbar,
  .web-blog-text,
  .blog-text {
    font-size: var(--fs-4);
  }

  .scroll-to-top-btn {
    right: 25px; /* Distance from the right */
    margin-bottom: 90px;
  }


    /**
   * ASIDE
   */

    .topics {
      display: -ms-inline-grid;
      font-size: 20px;
    }

   /**
   * FOOTER 
   */

  footer .container {
    /* padding: var(--py) 30px; */
    padding-left: 50px;
    /* padding: 20px; */
    grid-template-columns: 6fr 6fr 6fr;
    gap: 40px;
  }

  .copyright {
    padding-left: 100px;
  }

  .copyright-hr {
    margin-left: 40px;
    width: 90%;
    height: 1px;
    color: var(--action-primary);
  }

  .footer-social-media-links {
    display: flex;
    justify-content: space-evenly;
    font-size: 5px;
  }

}



/**
 * responsive for larger than 1024px screen
 */

@media (min-width: 1024px) {

  :root {

    /**
     * typography 
     */

    --fs-base: 1rem;
    --fs-1: 3rem;

  }

  .container {
    padding: 5px 0px 5px 0px;
    max-width: 900px; 
    padding-left: 50px;
  }

  .container .navbar .a .img {
    padding-left: 80px;
  }

  .navbar { 
    padding-left: 10px;
    width: 850px;
  }

  .unique-slide img {
    width: 120%;
    height: 200px;
    max-width: 1000px;
    margin-left: 450px;
  }

  .header-affiliate-links {
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 15px;
  }

  #slide-caption{
    text-align: center;
    margin-top: 20px;
    margin-right: 400px;
    margin-left: 400px;
    font-size: 18px;
    font-size: var(--fs-4);
    font-weight: 900;
    color: var(--foreground-primary);
    padding-bottom: 10px;
 } 

 #slide {
  margin: auto;
  width: 95%;
  height: 21rem;
}
 
#slideSec {
  margin: auto;
  width: 95%;
  height: 21rem;
}

  .blog .h2 {
    padding-left: 15rem;
    margin: 15px 0px;
  }




  /**
   * REUSED STYLE 
   */




  /**
   * HEADER 
   */

   .logo-light,
   .logo-dark { 
     height: 60px;
     width: 75px; 
   }

  header .btn-group { display: none; }

  header .flex-wrapper {
    display: flex;
    gap: 30px;
  }

  .desktop-nav {
    display:     flex;
    align-items: center;
    gap: 30px;
  }

  .desktop-nav .nav-link {
    color: var(--foreground-secondary);
    font-weight: 700;
  }

  .desktop-nav .nav-link:hover { color: var(--accent); }

  .theme-btn-desktop {
    position: relative;
    background: var(--background-secondary);
    color: var(--white);
    width:  52px;
    height: 26px;
    display:         flex;
    justify-content: center;
    align-items:     center;
    gap: 10px;
    border-radius: 100px;
  }

  .theme-btn-desktop.light {
    background: linear-gradient(45deg, hsl(7, 100%, 71%), hsl(46, 100%, 65%));
  }

  .theme-btn-desktop.dark {
    background: linear-gradient(45deg, hsl(225, 100%, 60%), hsl(296, 80%, 40%));
  }

  .theme-btn-desktop::before {
    content: '';
    position: absolute;
    background: var(--white);
    width:  21px;
    height: 21px;
    border-radius: 30px;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px -2px hsla(0, 0%, 0%, 0.05);
    z-index: 2;
  }

  .theme-btn-desktop.dark::before { left: calc(100% - 24px); }

  .header-title {
    font-size: 25px;
  }

  .search-icon {
    display: none;
  }

  .search-input {
    display: block; /* Hidden by default */
    position: relative;
  }

  /**
   * HERO 
   */

   .unique-slide img {
    width: 80%;
    height: 130px;
    max-width: 800px;
    margin-left: 145px;
  }

  .home-blog {
    padding-top: 30px;
    width: 150%;
    margin-left: 40px;
  }

  .blog-card-group {
    gap: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .main-blog-card-group {
    width: 85%;
  }

  .main-blog-card {
    max-width: 600px;
  }

  .blog-card-item {
    max-width: 500px;
  }

  .hero { text-align: left; }

  .hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;;
    align-items: center;
    gap: 50px;
  }

  .hero .btn-group {
    justify-content: start;
    gap: 30px;
  }

  .hero .right {
    position: relative;
    display:         flex;
    justify-content: center;
    align-items:     center;
  }

  .hero .pattern-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 200px;
    background: url(../images/pattern.png);
    background-size: contain;
    opacity: 0.2;
  }

  .slideshow-controls {
    padding-right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .slide-btn {
    margin: 0px 360px;
  }

  .hero .img-box {
    position: relative;
    z-index: 2;
  }

  .hero-img {
    width:  100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0 0 280px 230px;
    transform: translate(10px, -10px);
  }

  .hero .shape {
    position: absolute;
    top:  50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -42%) rotate(-20deg);
  }

  .hero .shape-1 {
    background: var(--accent);
    width:  90%;
    height: 90%;
    z-index: -1;
  }

  .hero .shape-2 {
    width:  92%;
    height: 92%;
    box-shadow: inset 0 -30px 0 var(--action-primary);
    z-index: 2;
  }



  /**
   * MAIN 
   */

  .main .container {
    display: grid;
    grid-template-columns: 6fr 2fr;
    gap: 20px;
  }

  textarea {
    width: 130%;
    height: 150px;
    font-size: 20px;
  }

  .textarea-title {
    width: 130%;
    height: 30px;
    font-size: 20px;
  }

  .contact-social-media-links {
    display: flex;
    justify-content: space-between;
  }

  .contact-blog-card {
    background: var(--background-primary);
    padding: 10px;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
    transition: 0.25s ease;
    height: 665px;
    width: 850px;
  }

  .contact-send-button {
    font-size: 25px;
  }

  .scroll-to-top-btn {
    right: 30px; /* Distance from the right */
    margin-bottom: 100px;
  }

  /* #web3-topic-img {
    width: 50%;
    margin-left: 250px;
  } */



  /**
   * ASIDE 
   */

  .aside {
    display: block;
    align-self: stretch;
  }

  .aside .h2 {
    color: var(--foreground-secondary);
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
  }

  .aside .wrapper {
    background: var(--background-primary);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 5px hsla(0, 0%, 0%, 0.05);
  }

  .topics { 
    /* margin-bottom: 3rem; */
    font-size: var(--fs-4);
    position: sticky;
    top: 4rem;
    /* margin-bottom: 98px; */
    
  }

  .topic-btn {
    display:     flex;
    align-items: stretch;
    background: var(--background-primary);
    border-radius: 10px;
    box-shadow: 0 5px 5px hsla(0, 0%, 0%, 0.05);
    overflow: hidden;
  }

  .topic-btn:not(:last-child) {
    margin-bottom: 6px;
   }

  .topic-btn .icon-box {
    font-size: 22px;
    width: 70px;
    display:         flex;
    justify-content: center;
    align-items:     center;
    background: var(--action-primary);
    color: var(--foreground-secondary);
  }

  .topic-btn:hover .icon-box {
    background: var(--accent);
    color: var(--white);
  }

  .topic-btn ion-icon { --ionicon-stroke-width: 40px; }

  .topic-btn p {
    padding: 5px;
    color: var(--foreground-secondary);
    font-weight: 600;
    font-size: 10px;
  }

  a.topic-btn {
    height: 25px;
  }

  .tags { margin-bottom: 3rem; }

  .tags .wrapper {
    display:   flex;
    flex-wrap: wrap;
    gap: 0.2rem;
  }

  .tags .hashtag {
    background: var(--action-primary);
    color: var(--foreground-secondary);
    padding: 5px 10px;
    font-size: 8px;
    font-weight: 100;
    border-radius: 5px;
  }

  .tags .hashtag:hover {
    background: var(--foreground-secondary);
    color: var(--action-primary);
  }

  .contact { margin-bottom: 3rem; }

  .contact p {
    color: var(--foreground-secondary);
    margin-bottom: 1rem;
  }

  .social-link {
    display:         flex;
    justify-content: center;
    align-items:     center;
    gap: 10px;
  }

  .social-link .icon-box {
    width:  45px;
    height: 45px;
    background: var(--action-secondary);
    border-radius: 50%;
    display:         flex;
    justify-content: center;
    align-items:     center;
    font-size: 22px;
  }

  .social-link .discord { color: hsl(235, 86%, 65%); }

  .social-link .twitter { color: hsl(203, 89%, 53%); }

  .social-link .facebook { color: hsl(220, 46%, 48%); }
  
  .social-link .icon-box:hover {
    background: var(--accent);
    color: var(--white);
  }

  
  /**
   * FOOTER 
   */

  footer .container {
    /* padding: var(--py) 30px; */
    /* padding: 20px 0px; */
    padding-left: 80px;
    grid-template-columns: 7fr 7fr 7fr;
    width: 1000px;
    gap: 30px;
  }

  .footer-title { font-size: 1.125rem; }

  .footer-link { margin-bottom: 0.3rem; }

  .copyright {
    padding-left: 100px;
  }

  .copyright-hr {
    margin-left: 15px;
    width: 90%;
    height: 1px;
    color: var(--action-primary);
  }

  .footer-social-media-links {
    display: flex;
    justify-content: space-evenly;
    font-size: 6px;
  }


  .footer-social-media-links a {
    padding-right: 30px;
  }

}



/**
 * responsive for larger than 1440px screen
 */

 @media (min-width: 1440px) {

  :root {

    /**
     * typography 
     */

    --fs-base: 1rem;
    --fs-1: 3rem;

  }


  .container {
    padding: 5px 0px 5px 0px;
    max-width: 1400px; 
    padding-left: 100px;
  }

  .container .navbar .a .img {
    padding-left: 100px;
  }

  .navbar { 
    padding-left: 180px;
    width: 1320px;
  }

  .unique-slide img {
    width: 120%;
    height: 200px;
    max-width: 1000px;
    margin-left: 450px;
  }


  .blog-card-item {
    max-width: 700px;
  }

  #slide-caption{
    text-align: center;
    margin-top: 0px;
    margin-right: 500px;
    margin-left: 500px;
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground-primary);
 } 

  #slide {
    margin: auto;
    width: 90%;
    height: 31rem;
  }
  
  #slideSec {
    margin: auto;
    width: 90%;
    height: 31rem;
  }


  .hero {
    padding-top: 0px;
  }

  .hero .blog .slideshow-class .h2 {
    padding-left: 250px;
  }

  .hero .blog .slideshow-class .h2::before {
    margin-left: 230px
  }


  .blog .h2 {
    padding-left: 28rem;
    margin: 5px 0px 10px;
  }

  /* .blog .h2::before {
    margin-left: 20px;
  } */


  /**
   * REUSED STYLE 
   */



  /**
   * HEADER 
   */

   .logo-light,
   .logo-dark { 
     height: 75px;
     width: 95px; 
   }

  header .btn-group { display: none; }

  header .flex-wrapper {
    display: flex;
    gap: 30px;
  }

  .desktop-nav {
    display:     flex;
    align-items: center;
    gap: 30px;
  }

  .desktop-nav .nav-link {
    color: var(--foreground-secondary);
    font-weight: 700;
  }

  .desktop-nav .nav-link:hover { color: var(--accent); }

  .theme-btn-desktop {
    position: relative;
    background: var(--background-secondary);
    color: var(--white);
    width:  52px;
    height: 26px;
    display:         flex;
    justify-content: center;
    align-items:     center;
    gap: 10px;
    border-radius: 100px;
  }

  .theme-btn-desktop.light {
    background: linear-gradient(45deg, hsl(7, 100%, 71%), hsl(46, 100%, 65%));
  }

  .theme-btn-desktop.dark {
    background: linear-gradient(45deg, hsl(225, 100%, 60%), hsl(296, 80%, 40%));
  }

  .theme-btn-desktop::before {
    content: '';
    position: absolute;
    background: var(--white);
    width:  21px;
    height: 21px;
    border-radius: 30px;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px -2px hsla(0, 0%, 0%, 0.05);
    z-index: 2;
  }

  .theme-btn-desktop.dark::before { left: calc(100% - 24px); }

  .header-title {
    font-size: 30px;
  }

  /* .search-container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 0px;
  } */

  .search-icon {
    display: none;
  }

  .search-input {
    display: block; /* Hidden by default */
    position: relative;
  }


  /**
   * HERO 
   */

   header  {
    position: sticky;
    top: 0px;
    /* margin-bottom: 5px; */
   }

   .offers-slideshow-container-and-dots {
    padding-top: 0px;
  }

   .header-affiliate-links {
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: var(--fs-5)
  }

  .hero { text-align: left; }

  .hero .container {
    display: grid;
    grid-template-columns: 5fr 2fr 2fr;
    align-items: center;
    gap: 50px;
  }

  .hero .btn-group {
    justify-content: start;
    gap: 30px;
  }

  .hero .right {
    position: relative;
    display:         flex;
    justify-content: center;
    align-items:     center;
  }

  .hero .pattern-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 200px;
    background: url(../images/pattern.png);
    background-size: contain;
    opacity: 0.2;
  }

  .hero .img-box {
    position: relative;
    z-index: 2;
  }

  .hero-img {
    width:  100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0 0 280px 230px;
    transform: translate(10px, -10px);
  }

  .slideshow-controls {
    padding-right: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .hero .shape {
    position: absolute;
    top:  50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -42%) rotate(-20deg);
  }

  .hero .shape-1 {
    background: var(--accent);
    width:  90%;
    height: 90%;
    z-index: -1;
  }

  .hero .shape-2 {
    width:  92%;
    height: 92%;
    box-shadow: inset 0 -30px 0 var(--action-primary);
    z-index: 2;
  }

  .slide-btn {
    margin: 0px 800px;
  }



  /**
   * MAIN 
   */

   .main {
    padding-bottom: 0px;
   }

   .home-blog-card-group {
    margin-bottom: 3rem;
    width: 98%;
    padding-left: 0px;
    padding-right: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px
  }

  .main-blog-card-group {
    margin-bottom: 1rem;
    width: 110%;
    padding-left: 0px;
    padding-right: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .unique-slideshow-container {
    background: var(--background-primary);
    margin: auto;
    overflow: hidden;
  }
  

  .unique-slide img {
    width: 130%;
    height: auto;
    max-width: 800px;
    margin-left: 550px;
  }
  
  
  .unique-caption {
    color: var(--foreground-primary);
    font-size: 18px;
    text-align: center;
    padding: 0px;
    bottom: 0px;
    font-size: var(--fs-3);
    font-weight: 700;
    color: var(--foreground-primary);
    margin-top: 0px;
  }
  
  .unique-prev, .unique-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  .unique-dots-container {
    text-align: center;
    margin-top: 0px;
  }
  
  .unique-dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .indicator-container {
    margin-top: 0px;
  }

  .slide-btn {
    padding: 2px 10px 0px 10px;
  }
  

   #contact .container {
    margin-left: 0px;
    gap: 40px;
    padding-left: 20px;
  }

  .main .container {
    display: grid;
    grid-template-columns: 6fr 2fr;
    gap: 10px;
    margin-left: 100px;
  }

  .blog {
    padding-top: 10px;
    width: 90%;
    margin-left: 100px;
  }

  .home-blog {
    padding-top: 10px;
    width: 110%;
    margin-left: 100px;
  }

  .blog-card-group {
    padding-left: 0px;
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .main-blog-card {
    max-width: 1500px;
  }

  .blog-card {
    max-width: 330px;
  }

  .product-blog-card-group {
    padding-left: 0px;
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .offers-blog-card-group {
    padding-left: 0px;
  }

  .contact-blog-card {
    background: var(--background-primary);
    padding: 10px;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
    transition: 0.25s ease;
    height: 665px;
    width: 1000px;
  }

  .blog-banner-img {
    width:  80%;
    height: 50%;
    padding-left: 285px;
    object-fit: cover;
    margin: auto;
  }

  .contact-social-media-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }

    textarea {
      width: 100%;
      height: 150px;
      font-size: 25px;
    }
  
    .textarea-title {
      width: 100%;
      height: 30px;
      font-size: 25px;
    }

    .contact-send-button {
      font-size: 30px;
    }

    .scroll-to-top-btn {
      right: 30px; /* Distance from the right */
      margin-bottom: 110px;
    }

    .navbar,
    .web-blog-text,
    .blog-text {
      font-size: var(--fs-4);
    }

    .blog-text {
      color: var(--foreground-secondary);
      font-size: var(--fs-3);
      display: -webkit-box;
      line-clamp: 3;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .home-blog-text {
      color: var(--foreground-secondary);
      font-size: var(--fs-4);
      display: -webkit-box;
      line-clamp: 3;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .web-blog-text {
      color: var(--foreground-secondary);
      font-size: var(--fs-4);
      overflow: hidden;
      margin-bottom: 1rem;
    }



  /**
   * ASIDE 
   */

  .aside {
    display: block;
    align-self: stretch;
    margin-top: 15px;
    /* margin-right: 100px; */
    max-width: 120px;
  }

  .aside .h2 {
    color: var(--foreground-secondary);
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.3;
  }

  .aside .wrapper {
    background: var(--background-primary);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 5px hsla(0, 0%, 0%, 0.05);
  }

  .topics {
    /* margin-bottom: 3rem; */
    display: grid;
    grid-template-columns: 3fr 3fr;
    gap: 10px;
    font-size: var(--fs-5);
    position: sticky;
    top: 100px;
    /* margin-bottom: 98px; */
    width: 200px;
  }

  /* .topics p{
    width: 10px;
  } */

  .topic-btn {
    display:     flex;
    align-items: stretch;
    background: var(--background-primary);
    border-radius: 10px;
    box-shadow: 0 5px 5px hsla(0, 0%, 0%, 0.05);
    overflow: hidden;
  }

  .topic-btn:not(:last-child) {
    margin-bottom: 8px;
   }

  .topic-btn .icon-box {
    font-size: 15px;
    width: 30px;
    display:         flex;
    justify-content: center;
    align-items:     center;
    background: var(--action-primary);
    color: var(--foreground-secondary);
  }

  .topic-btn:hover .icon-box {
    background: var(--accent);
    color: var(--white);
  }

  .topic-btn ion-icon { --ionicon-stroke-width: 40px; }

  .topic p {
    width: 30px;
  }

  .topic-btn p {
    padding: 7px;
    color: var(--foreground-secondary);
    font-weight: 600;
    font-size: 10px;
  }

  a.topic-btn {
    height: 38px;
  }


  .tags { margin-bottom: 3rem; }

  .tags .wrapper {
    display:   flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    font-size: 10px;
  }

  .tags .hashtag {
    background: var(--action-primary);
    color: var(--foreground-secondary);
    padding: 5px 10px;
    /* font-size: var(--fs-5); */
    font-size: 11px;
    font-weight: 200;
    border-radius: 5px;
  }

  .tags .hashtag:hover {
    background: var(--foreground-secondary);
    color: var(--action-primary);
  }

  .contact { margin-bottom: 3rem; }

  .contact p {
    color: var(--foreground-secondary);
    margin-bottom: 1rem;
  }

  .social-link {
    display:         flex;
    justify-content: center;
    align-items:     center;
    gap: 10px;
  }

  .social-link .icon-box {
    width:  45px;
    height: 45px;
    background: var(--action-secondary);
    border-radius: 50%;
    display:         flex;
    justify-content: center;
    align-items:     center;
    font-size: 22px;
  }

  .social-link .discord { color: hsl(235, 86%, 65%); }

  .social-link .twitter { color: hsl(203, 89%, 53%); }

  .social-link .facebook { color: hsl(220, 46%, 48%); }
  
  .social-link .icon-box:hover {
    background: var(--accent);
    color: var(--white);
  }

  #home-topic-img {
    width: 85%;
    margin: auto;
  }

  #web3-topic-img {
    width: 50%;
    margin-left: 250px;
  }


  /**
   * FOOTER 
   */
  footer {
    padding-left: 280px;
    /* width: 80%; */
  }

  footer .container {
    /* padding: 20px 0px; */
    padding-left: 15px;
    grid-template-columns: 8fr 8fr 8fr;
    width: 1300px;
    gap: 80px;
  }

  .footer-title { font-size: 1.125rem; }

  .footer-link { margin-bottom: 0.3rem; }

  .copyright {
    padding-left: 300px;
  }

  .copyright-hr {
    margin-left: 15px;
    width: 70%;
    height: 1px;
    color: var(--action-primary);
  }

  .footer-social-media-links {
      display: flex;
      justify-content: space-evenly;
      font-size: 8px;
  }


}


/**
 * responsive for larger than 2000px screen
 */

 @media (min-width: 2000px) {

  :root {

    /**
     * typography 
     */

    --fs-base: 1rem;
    --fs-1: 3rem;

  }


  .container {
    padding: 5px 0px 5px 0px;
    max-width: 2100px; 
    padding-left: 130px;
  }

  .container .navbar .a .img {
    padding-left: 130px;
  }

  .navbar { 
    padding-left: 210px;
    width: 1800px;
  }

  .unique-slide img {
    width: 120%;
    height: 200px;
    max-width: 1000px;
    margin-left: 450px;
  }


  .blog-card-item {
    max-width: 900px;
    gap: 150px;
  }

  #slide-caption{
    text-align: center;
    margin-top: 0px;
    margin-right: 500px;
    margin-left: 500px;
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground-primary);
 } 

  #slide {
    margin: auto;
    width: 90%;
    height: 35rem;
  }
  
  #slideSec {
    margin: auto;
    width: 90%;
    height: 35rem;
  }

  .hero {
    padding-top: 0px;
  }

  .hero .blog .slideshow-class .h2 {
    padding-left: 250px;
  }

  .hero .blog .slideshow-class .h2::before {
    margin-left: 230px
  }


  .blog .h2 {
    padding-left: 28rem;
    margin: 5px 0px 10px;
  }

  /* .blog .h2::before {
    margin-left: 20px;
  } */


  /**
   * REUSED STYLE 
   */



  /**
   * HEADER 
   */

   .logo-light,
   .logo-dark { 
     height: 75px;
     width: 95px; 
   }

  header .btn-group { display: none; }

  header .flex-wrapper {
    display: flex;
    gap: 30px;
  }

  .desktop-nav {
    display:     flex;
    align-items: center;
    gap: 30px;
  }

  .desktop-nav .nav-link {
    color: var(--foreground-secondary);
    font-weight: 700;
  }

  .desktop-nav .nav-link:hover { color: var(--accent); }

  .theme-btn-desktop {
    position: relative;
    background: var(--background-secondary);
    color: var(--white);
    width:  52px;
    height: 26px;
    display:         flex;
    justify-content: center;
    align-items:     center;
    gap: 10px;
    border-radius: 100px;
  }

  .theme-btn-desktop.light {
    background: linear-gradient(45deg, hsl(7, 100%, 71%), hsl(46, 100%, 65%));
  }

  .theme-btn-desktop.dark {
    background: linear-gradient(45deg, hsl(225, 100%, 60%), hsl(296, 80%, 40%));
  }

  .theme-btn-desktop::before {
    content: '';
    position: absolute;
    background: var(--white);
    width:  21px;
    height: 21px;
    border-radius: 30px;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px -2px hsla(0, 0%, 0%, 0.05);
    z-index: 2;
  }

  .theme-btn-desktop.dark::before { left: calc(100% - 24px); }

  .header-title {
    font-size: 30px;
  }

  /* .search-container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 0px;
  } */

  .search-icon {
    display: none;
  }

  .search-input {
    display: block; /* Hidden by default */
    position: relative;
  }


  /**
   * HERO 
   */

   header  {
    position: sticky;
    top: 0px;
    /* margin-bottom: 5px; */
   }

   .offers-slideshow-container-and-dots {
    padding-top: 0px;
  }

   .header-affiliate-links {
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: var(--fs-5)
  }

  .hero { text-align: left; }

  .hero .container {
    display: grid;
    grid-template-columns: 5fr 2fr 2fr;
    align-items: center;
    gap: 50px;
  }

  .hero .btn-group {
    justify-content: start;
    gap: 30px;
  }

  .hero .right {
    position: relative;
    display:         flex;
    justify-content: center;
    align-items:     center;
  }

  .hero .pattern-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 200px;
    background: url(../images/pattern.png);
    background-size: contain;
    opacity: 0.2;
  }

  .hero .img-box {
    position: relative;
    z-index: 2;
  }

  .hero-img {
    width:  100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0 0 280px 230px;
    transform: translate(10px, -10px);
  }

  .slideshow-controls {
    padding-right: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .hero .shape {
    position: absolute;
    top:  50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -42%) rotate(-20deg);
  }

  .hero .shape-1 {
    background: var(--accent);
    width:  90%;
    height: 90%;
    z-index: -1;
  }

  .hero .shape-2 {
    width:  92%;
    height: 92%;
    box-shadow: inset 0 -30px 0 var(--action-primary);
    z-index: 2;
  }

  .slide-btn {
    margin: 0px 800px;
  }



  /**
   * MAIN 
   */

   .home-blog-card-group {
    margin-bottom: 3rem;
    width: 98%;
    padding-left: 0px;
    padding-right: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px
  }

  .main-blog-card-group {
    margin-bottom: 3rem;
    width: 98%;
    padding-left: 0px;
    padding-right: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .unique-slideshow-container {
    background: var(--background-primary);
    margin: auto;
    overflow: hidden;
  }
  

  .unique-slide img {
    width: 130%;
    height: auto;
    max-width: 800px;
    margin-left: 550px;
  }
  
  
  .unique-caption {
    color: var(--foreground-primary);
    font-size: 18px;
    text-align: center;
    padding: 0px;
    bottom: 0px;
    font-size: var(--fs-3);
    font-weight: 700;
    color: var(--foreground-primary);
    margin-top: 0px;
  }
  
  .unique-prev, .unique-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  .unique-dots-container {
    text-align: center;
    margin-top: 0px;
  }
  
  .unique-dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .indicator-container {
    margin-top: 0px;
  }

  .slide-btn {
    padding: 2px 10px 0px 10px;
  }
  

   #contact .container {
    margin-left: 0px;
    gap: 40px;
    padding-left: 20px;
  }

  .main .container {
    display: grid;
    grid-template-columns: 6fr 2fr;
    gap: 10px;
    margin-left: 100px;
  }

  .blog {
    padding-top: 10px;
    width: 100%;
    margin-left: 100px;
  }

  .home-blog {
    padding-top: 10px;
    width: 110%;
    margin-left: 100px;
  }

  .blog-card-group {
    padding-left: 0px;
    gap: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  blog-card {
    max-width: 400px;
  }


  .main-blog-card {
    max-width: 1200px;
  }

  .product-blog-card-group {
    padding-left: 0px;
    gap: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }



  .offers-blog-card-group {
    padding-left: 0px;
  }

  .contact-blog-card {
    background: var(--background-primary);
    padding: 10px;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 10px hsla(0, 0%, 0%, 0.05);
    transition: 0.25s ease;
    height: 665px;
    width: 1500px;
  }

  .contact-social-media-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }

    textarea {
      width: 100%;
      height: 150px;
      font-size: 25px;
    }
  
    .textarea-title {
      width: 100%;
      height: 30px;
      font-size: 25px;
    }

    .contact-send-button {
      font-size: 30px;
    }

    .scroll-to-top-btn {
      right: 400px;
    }

    .navbar,
    .web-blog-text,
    .blog-text {
      font-size: var(--fs-4);
    }

    .blog-text {
      color: var(--foreground-secondary);
      font-size: var(--fs-3);
      display: -webkit-box;
      line-clamp: 3;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .home-blog-text {
      color: var(--foreground-secondary);
      font-size: var(--fs-4);
      display: -webkit-box;
      line-clamp: 3;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .web-blog-text {
      color: var(--foreground-secondary);
      font-size: var(--fs-4);
      overflow: hidden;
      margin-bottom: 1rem;
    }



  /**
   * ASIDE 
   */

  .aside {
    display: block;
    align-self: stretch;
    margin-top: 35px;
    margin-right: 100px;
  }

  .aside .h2 {
    color: var(--foreground-secondary);
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.3;
  }

  .aside .wrapper {
    background: var(--background-primary);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 5px hsla(0, 0%, 0%, 0.05);
  }

  .topics {
    /* margin-bottom: 3rem; */
    font-size: var(--fs-4);
    position: sticky;
    top: 100px;
    /* margin-bottom: 98px; */
  }

  .topic-btn {
    display:     flex;
    align-items: stretch;
    background: var(--background-primary);
    border-radius: 10px;
    box-shadow: 0 5px 5px hsla(0, 0%, 0%, 0.05);
    overflow: hidden;
  }

  .topic-btn:not(:last-child) {
    margin-bottom: 13px;
   }

  .topic-btn .icon-box {
    font-size: 22px;
    width: 70px;
    display:         flex;
    justify-content: center;
    align-items:     center;
    background: var(--action-primary);
    color: var(--foreground-secondary);
  }

  .topic-btn:hover .icon-box {
    background: var(--accent);
    color: var(--white);
  }

  .topic-btn ion-icon { --ionicon-stroke-width: 40px; }

  .topic-btn p {
    padding: 10px;
    color: var(--foreground-secondary);
    font-weight: 600;
    font-size: 15px;
  }

  a.topic-btn {
    height: 45px;
  }


  .tags { margin-bottom: 3rem; }

  .tags .wrapper {
    display:   flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    font-size: 10px;
  }

  .tags .hashtag {
    background: var(--action-primary);
    color: var(--foreground-secondary);
    padding: 5px 10px;
    /* font-size: var(--fs-5); */
    font-size: 11px;
    font-weight: 200;
    border-radius: 5px;
  }

  .tags .hashtag:hover {
    background: var(--foreground-secondary);
    color: var(--action-primary);
  }

  .contact { margin-bottom: 3rem; }

  .contact p {
    color: var(--foreground-secondary);
    margin-bottom: 1rem;
  }

  .social-link {
    display:         flex;
    justify-content: center;
    align-items:     center;
    gap: 10px;
  }

  .social-link .icon-box {
    width:  45px;
    height: 45px;
    background: var(--action-secondary);
    border-radius: 50%;
    display:         flex;
    justify-content: center;
    align-items:     center;
    font-size: 22px;
  }

  .social-link .discord { color: hsl(235, 86%, 65%); }

  .social-link .twitter { color: hsl(203, 89%, 53%); }

  .social-link .facebook { color: hsl(220, 46%, 48%); }
  
  .social-link .icon-box:hover {
    background: var(--accent);
    color: var(--white);
  }

  #home-topic-img {
    width: 85%;
    margin: auto;
  }

  #web3-topic-img {
    width: 50%;
    margin-left: 250px;
  }


  /**
   * FOOTER 
   */
  footer {
    padding-left: 280px;
    /* width: 80%; */
  }

  footer .container {
    padding: 20px 0px;
    grid-template-columns: 10fr 10fr 10fr;
    width: 1800px;
    gap: 110px;
  }

  .footer-title { font-size: 1.125rem; }

  .footer-link { margin-bottom: 0.3rem; }

  .copyright {
    padding-right: 130px;
  }

  .copyright-hr {
    margin-left: 15px;
    width: 70%;
    height: 1px;
    color: var(--action-primary);
  }

  .footer-social-media-links {
    display: flex;
    justify-content: space-evenly;
    font-size: 10px;
    }
}