/* CSS for About Section */
.wrapper.style1 {
  padding: 7em 0;
 
}

.about-content {
  display: flex;
  align-items:flex-start ;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.profile-image {
  flex: 0 0 300px;
  position: relative;
}

.profile-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 150px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 0.015em;
 
  color: #713d3d;
  
}

.about-text h2 {
  font-size: 1.7em;
  color: #666;
  margin-bottom: 1em;
}

.bio {
  font-size: 1.5em;
  line-height: 1.5;
  color: #555;
  margin-bottom: 2em;
}

.key-points {
  display: flex;
  gap: 2rem;
  margin-bottom: 2em;
  align-items: center;
}

.point {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.point .number {
  font-size: 2em;
  font-weight: bold;
  color: #333;
}

.point .label {
  font-size: 0.9em;
  color: #800000;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.button {
  padding: 0.8em 1.6em;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.button.primary {
  background: #2c3e50;
  color: white;
}

.button.secondary {
  background: transparent;
  border: 2px solid #2c3e50;
  color: #2c3e50;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .wrapper.style1 {
      padding: 4em 2em;
  }
  
  .about-content {
      gap: 2rem;
  }
  
  .profile-image {
      flex: 0 0 250px;
  }
  
  .profile-image img {
      height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .about-content {
      flex-direction: column;
      text-align: center;
  }
  
  .profile-image {
      flex: 0 0 auto;
      width: 200px;
      margin: 0 auto;
  }
  
  .profile-image img {
      height: 200px;
  }
  
  .key-points {
      justify-content: center;
  }
  
  .cta-buttons {
      justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .wrapper.style1 {
      padding: 3em 1em;
  }
  
  .about-text h1 {
      font-size: 2em;
  }
  
  .about-text h2 {
      font-size: 1.2em;
  }
  
  .bio {
      font-size: 1em;
  }
  
  .key-points {
      flex-direction: column;
      gap: 1.5rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: 1rem;
  }
  
  .button {
      width: 100%;
      text-align: center;
  }
}

/*Buy me a Coffee */

.col-12 {
  margin: 0 auto;
  text-align: center;
}

.social li {
  display: inline-block;
  margin: 0.5rem;
}

.buy-me-coffee {
  text-align: center;
  margin-top: 2rem; /* Increased space between social links and button */
}

.buy-me-coffee a {
  display: block;
}
 /* .wrapper.style1 {
    padding: 4rem 0;
}
.wrapper.style1 {
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-direction: row; /* Changed from row-reverse to row 
    align-items: flex-start;
    gap: 2rem;
}

/* Profile Image Column - Now on the left */
/*
.col-4 {
    flex: 0 0 33.333%;
}

.col-8 {
    flex: 0 0 66.666%;
    padding-left: 2rem;
}



header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    text-align: right; /* Changed to right 
}

#software-engineer-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #4A3C32;
    text-align: right; /* Changed to right */

    .image.fit {
      display: block;
      width: 100%;
      border-radius: 10px;
      overflow: hidden;
  }
  
  .image.fit img {
      width: 100%;
      height: auto;
      object-fit: cover;
  }

#gemini-symbol {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
    text-align: right; /* Changed to right */
}

p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: right; /* Changed to right */
}

.button.large {
    display: block; /* Changed to block */
    margin-left: auto; /* Added to align button to right */
    /* Added to contain button width */
    padding: 1rem 2rem;
    background-color: #3B2F2F;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button.large:hover {
    background-color: #4A3C32;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .col-5-large {
        flex: 0 0 41.666%;
    }
    
    .col-7-large {
        flex: 0 0 58.333%;
    }
}

@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .col-12-medium {
        flex: 0 0 100%;
        padding-left: 0;
    }
    
    .image.fit {
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    /* Change to left alignment on mobile */
    header h1,
    #software-engineer-title,
    #gemini-symbol,
    p {
        text-align: left;
    }
    
    .button.large {
        margin: 0; /* Reset margin on mobile */
    }
}

  /*portrait profile logo*/


  /*-----------------Service Cards Styling-------------------------- */

  .modal-overlay {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.modal-header h2 {
    margin: 0;
}

.modal-body {
    line-height: 1.6;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}


/*End of Modal Stying ------*/



/*service cards styling */



.row.aln-center {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    
}

.box.style1 {
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    width: 350px;
    height: 350px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* box sytyle 2 */


.service-description {
  text-align: center; /* Center the text within the paragraph */
}
/*End of sevice description */

.box.style2 {
border-radius: 15px;
padding: 25px;
text-align: center;
width: 350px;
height: 350px;
transition: all 0.3s ease;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
}

/*end of box style 2 */

.box.style1 span, .box.style1 i {
    font-size: 4rem;
     margin-bottom: 15px;
}

.box.style1 h3 {
    color:#c82121;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.box.style1 p {
    color: #000000;
    font-size: 14px;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/*CSS to help Style the two added buttons */
.button-group {
  display: flex; /* Use flexbox for horizontal alignment */
  justify-content: space-between; /* Space buttons evenly */
}

.button {
  padding: 10px 20px;
  background-color: #5d3434;
  color: #fff;
  border: none;
  border-radius: 3px;
  text-decoration: none;
}

/*End of CSS to style two buttons */



/*End of service cards styling  1/15/2025
 */

.service-description {
  /* Center the text vertically within the card */
  text-align: center; 
  /* Optional: Style the text */
  font-size: 13.5px;
  line-height: 1.5;
  color: #943636;
}



/* Service Section Icons */
.box.style1 span:hover,
.box.style1 i:hover {
    transform: scale(1.1);
    color: #007bff; /* Highlight color on hover */
}

/* Specific Icon Colors */
.box.style1 .fa-palette {
	font-size: 75px;
    color: #9C27B0; /* Purple for UI Development */
}

.box.style1 .fa-brands.fa-figma {
	font-size: 75px;
    color: #F24E1E; /* Figma's brand color */
}

.box.style1 .fa-brands.fa-js {
	font-size: 75px;
    color: #F7DF1E; /* JavaScript yellow */
}

.box.style1 .fa-solid.fa-server {
	font-size: 75px;
    color: #2196F3; /* Blue for Backend Integration */
}

.box.style1 .fa-solid.fa-code {
	font-size: 75px;
    color: #4CAF50; /* Green for Web Maintenance */
}


.box.style1 .fa-sharp.fa-solid.fa-gears {
	font-size: 75px;
    color: #FF5722; /* Orange for SEO */
}

/* Portfolio Section Image Hover Effects */
.box.style2 .image.featured {
    overflow: hidden;
    position: relative;
}

.box.style2 .image.featured img {
    transition: transform 0.4s ease;
    width: 100%;
    height: auto;
}

.box.style2 .image.featured:hover img {
    transform: scale(1.1);
}

/* Responsive Icon Sizing */
@media screen and (max-width: 980px) {
    .box.style1 span,
    .box.style1 i {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 736px) {
    .box.style1 span,
    .box.style1 i {
        font-size: 2rem;
    }
}

/* Additional Icon Styling for Accessibility */
.box.style1 span,
.box.style1 i {
    cursor: pointer;
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s ease;
}

/* Above icons Hover Effects*/

.box.style1 .fa-palette,
.box.style1 .fa-brands.fa-figma,
.box.style1 .fa-brands.fa-js,
.box.style1 .fa-solid.fa-server,
.box.style1 .fa-solid.fa-code,
.box.style1 .fa-sharp.fa-solid.fa-gears {
    font-size: 75px;
    transition: all 0.4s ease-in-out;
    position: relative;
    display: inline-block;
}

/* Hover Effect 1: Pulse and Color Shift */
.box.style1 .fa-palette:hover {
    color: #FF00FF; /* Vibrant purple */
    transform: scale(1.1) rotate(5deg);
    text-shadow: 0 0 15px rgba(156, 39, 176, 0.5);
}

.box.style1 .fa-brands.fa-figma:hover {
    color:#800000 ; /* Warmer Figma tone */
    transform: scale(1.1) rotate(-5deg);
    text-shadow: 0 0 15px rgba(242, 78, 30, 0.5);
}

.box.style1 .fa-brands.fa-js:hover {
    color: #F6BE00; /* Amber variation */
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(247, 223, 30, 0.5);
}

.box.style1 .fa-solid.fa-server:hover {
    color: #1976D2; /* Deeper blue */
    transform: scale(1.1) translateY(-10px);
    text-shadow: 0 0 15px rgba(33, 150, 243, 0.5);
}

.box.style1 .fa-solid.fa-code:hover {
    color: #66BB6A; /* Lighter green */
    transform: scale(1.1) rotate(10deg);
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.box.style1 .fa-sharp.fa-solid.fa-gears:hover {
    color: #FF7043; /* Deeper orange */
    transform: scale(1.1) rotate(-10deg);
    text-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
}

/* Subtle Background Glow on Hover */
.box.style1 .fa-palette:hover,
.box.style1 .fa-brands.fa-figma:hover,
.box.style1 .fa-brands.fa-js:hover,
.box.style1 .fa-solid.fa-server:hover,
.box.style1 .fa-solid.fa-code:hover,
.box.style1 .fa-sharp.fa-solid.fa-gears:hover {
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    padding: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .box.style1 .fa-palette,
    .box.style1 .fa-brands.fa-figma,
    .box.style1 .fa-brands.fa-js,
    .box.style1 .fa-solid.fa-server,
    .box.style1 .fa-solid.fa-code,
    .box.style1 .fa-sharp.fa-solid.fa-gears {
        font-size: 55px;
    }
}

@media screen and (max-width: 480px) {
    .box.style1 .fa-palette,
    .box.style1 .fa-brands.fa-figma,
    .box.style1 .fa-brands.fa-js,
    .box.style1 .fa-solid.fa-server,
    .box.style1 .fa-solid.fa-code,
    .box.style1 .fa-sharp.fa-solid.fa-gears {
        font-size: 45px;
    }
}
/*Further Modal Styling */

/* Style the icon within the modal */
.modal-content .fa-solid,
.modal-content .fa-brands,
.modal-content .fa-sharp {
  font-size: 5em; /* Adjust font size as needed */
  color: #e99b43; /* Or your desired color */
  transition: all 0.4s ease-in-out;
  position: relative;
  display: inline-block;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .modal-content .fa-solid,
  .modal-content .fa-brands,
  .modal-content .fa-sharp {
    font-size: 3em; /* Adjust font size for smaller screens */
  }

  /* Tech Stack section */
  /* Tech Stack Styles */
 /*
	.tech-stack {
    padding: 70px 10px; /* Adjust top/bottom padding as needed */
    text-aligncenter; /* Center the content horizontally */
  }
  
.tech-stack-header {
    margin-bottom: 40px;
    color:#800000;

}


  
.tech-category {
   
    border-radius: 10px; 
    padding: 1.5rem 1rem; /* Use rem for better responsiveness */
    margin: 2.5rem auto;
    max-width: 90vw; /* Use viewport width for better responsiveness */
  
    @media (max-width: 768px) {
      border-radius: 5px;
      padding: 1rem 0.5rem;
      max-width: 80vw; 
    }
  }
  
  .category-header {
    margin-bottom: 20px;
    border-bottom: px solid #bd4343;
    padding-bottom: 15px;
  }
  
  .category-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 5px;
  }
  
  .category-header p {
    color: #666;
    font-size: 9rem;
  }
  
  /* Responsive Styles */
  
  @media (max-width: 768px) {
   
  
    .tech-item {
      margin-bottom: 10px; /* Add space between items on vertical stack */
    }
  }
  .tech-stack-header {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 0.1px solid #FFA500;
    letter-spacing: 0.5px;
  }
  .tech-list {
    display: grid; /* Default grid layout for larger screens */
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-gap: 20px;
    align-items: center;
    color: #FF8C00;

  }
  
  .tech-item {
    text-align: center;
    padding: 15px;
    transition: background-color 0.2s ease;
  }
  
  .tech-item {
    text-align: center;
    padding: 15px;
    border-radius: 5px;
   
  }
  /* CSSStyling for Icons */
  .fa-brands.fa-html5{
    color: #F06529; /* Change icon color */
    font-size: 45px;
  }

 .fa-brands.fa-js{
    color: #EFD81D ; /* Change icon color */
    font-size: 45px;
  }

  .fa-brands.fa-css3-alt{
    color: #1572B6 ;
    font-size:45px;
  }
  .fa-brands.fa-react{
    color:#61DAFB  ;
    font-size: 45px;
  }
  .fa-brands.fa-node-js{
    color: #68A063;
    font-size: 45px;
  }
  .fa-brands.fa-python{
    color: #3572A5;
    font-size: 45px;
  }

  .devicon-mongodb-plain {
    color: #4DB33D; /* MongoDB green color */
    font-size: 45px; /* Adjust size as needed */
  }
  .devicon-mysql-plain {
    color: #000000; /* Black for the main logo */
    text-shadow: 0 0 2px #337ab7; /* Blue shadow */
    font-size: 45px;
  }
  .devicon-netlify-plain{
    color: #00C9A7; 
    font-size: 45px; /* Adjust size as needed */

  }
.devicon-kotlin-plain{
  color: #0095D5; /* Kotlin orange color */
    font-size: 45px; /* Adjust size as needed */
}

.fa-brands.fa-java {
  color: #ED9C28; 
  font-size: 45px;
}
  /*End of css Styling for icons */
.tech-logo {
    font-size: 5em; /* Increase icon size */
    margin-bottom: 5px; /* Add space below the icon */
    display: flex; /* Center icon horizontally */
    justify-content: center; 
  }
  
 
  /* Base styles for skills section */


/* End of Tech stack*/

/*Acoordion section */

  
/*End of Accordion */

/*Email form Validation */

  /*End of email */

  /*Social  Media Styling */


		/* Socials social Media Begin...   */

/* Social Media Icons Container */


/* portfolio section code */




/*End of Portfolio section code */

/*Tech Stack icons begins here */
/*
.tech-stack-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .tech-stack-header {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    width: 100%;
  }
  /*
  .tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
  }
    
  
  .tech-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f4f6f7;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .tech-stack-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--secondary-color), transparent);
    transform: rotate(-45deg);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .tech-stack-item:hover::before {
    opacity: 0.2;
  }
  
  .tech-stack-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .tech-stack-item:hover .tech-stack-icon {
    transform: scale(1.2) rotate(360deg);
    color: var(--secondary-color);
  }
  
  .tech-stack-name {
    font-weight: 600;
    color: var(--hover-color);
    transition: color 0.3s ease-in-out;
    text-align: center;
  }
  
  .tech-stack-item:hover .tech-stack-name {
    color: var(--secondary-color);
  }
  
  /* Media Queries */
  @media screen and (max-width: 768px) {
    .tech-stack-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
  
    .tech-stack-icon {
      font-size: 2.5rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .tech-stack-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  
    .tech-stack-icon {
      font-size: 2rem;
    }
  
    .tech-stack-name {
      font-size: 0.9rem;
    }
  }


  /* Copy right footer */
  /*
  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    margin: 0 auto; /
    width: 80%; 
  }
  
  .box.style2 {
    background-color: var(--card-bg, #fff); 
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer; 
  }
  
  .box.style2:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  .box.style2 img {
    width: 100%;
    max-height: 200px; 
    object-fit: cover; 
    margin-bottom: 10px;
  }
  
  .box.style2 h3 {
    margin-bottom: 5px;
    font-size: 18px; 
  }
  
  .box.style2 p {
    font-size: 14px; 
    line-height: 1.5; 
  }
  
  .button-group {
    display: flex;
    justify-content: space-between;
  }
  
  .button-group a {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px; 
  }
  
  .button-group a:hover {
    background-color: #222;
  }
  
 
  /* Base Service Grid Styles */
  .nectar-social {
    position: fixed; 
    top: 50%; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    transform: translateY(-50%); 
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border-radius: 5px;
    padding: 10px; 
    z-index: 9999; 
  }
  
  .nectar-social-inner {
    display: flex;
    flex-direction: column; 
    align-items: center; 
  }
  
  .nectar-social a {
    margin: 5px 0; 
    text-decoration: none;
    color: #333; 
  }
  
  .nectar-social a:hover {
    color: #007bff; 
  }

  /*css cont*/

/* See some of recent work section */
  .{
    display: flex;
    justify-content: center;
    align-items: center; /* Center the button vertically within the container */
    margin-top: 6rem; 
  }
  
  @media screen and (max-width: 768px) { 
    .button-container {
      margin-top: 1rem; 
    }
  }
  

  /*foooooter*/

  /* Footer CSS   */
.main-footer {
 
  color: #fff;
  padding: 2rem 0;
  position: relative;
  width: 100%;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.crafted-text {
  color: #fff; /* Example: Red */
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.copyright p {
  font-size: 1rem;
  margin: 0;
  color: #ecf0f1;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: #f1c40f;
}

.designer-credit {
  font-size: 0.9rem;
  color: #ecf0f1;
}

.designer-credit p {
  margin: 0;
}

.designer-credit .fa-heart {
  color: #e74c3c;
  animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .main-footer {
      padding: 1.5rem 0;
  }

  .footer-container {
      padding: 0 1rem;
  }

  .footer-social {
      gap: 1rem;
  }

  .footer-social a {
      font-size: 1.25rem;
  }
}

@media screen and (max-width: 480px) {
  .footer-info {
      gap: 1rem;
  }

  .copyright p {
      font-size: 0.9rem;
  }

  .designer-credit {
      font-size: 0.8rem;
  }
}