/* Reset */
html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100vw; /* Ensure it takes full width */
    background-color: #ffffff; /* Set a default background color */
}

body, html {
    overflow: visible;
}
body, ul, li, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: Arial, sans-serif;
}
header{
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays above other content */
}
/* Top Blue Bar */
.top-bar {
    background: #6366F1;
    color: white;
    padding: 2px 0;
    font-size: 14px;
    display: flex;
    justify-content: flex-end;
}

.container1 {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 17px;
}
.container2 {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Left Links */
.right-links a {
    color: white;
    margin-right: 15px;
    
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 9px 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    
}

/* Logo */
.logo img {
    height: 50px;
    width: 130px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: black;
    font-size: 16px;
    font-weight: 500;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    padding: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Right Side - Login & Sign Up */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-buttons .login {
    color: black;
    font-size: 16px;
}

.auth-buttons .signup {
    background: #6366F1;
    color: white;
    padding: 4px 15px;
    border-radius: 10px;
}
/* Hover Effects for Navigation Links */
.nav-links a:hover {
    color: #6366F1; /* Change color on hover */
}

/* Hover Effects for Dropdown */
.dropdown:hover > a {
    color: #6366F1;
}

/* Hover Effects for Dropdown Menu Items */
.dropdown-menu li a:hover {
    background: #f0f0f0; /* Light gray background */
    padding-left: 10px; /* Small slide effect */
    
}

/* Hover Effects for Right Side Buttons */
.auth-buttons .login:hover {
    color: #6366F1;
}

.auth-buttons .signup:hover {
    background: #5660D9; /* Darker blue on hover */
}
.right-links a:hover {
    color: black;
}
/* Dropdown */
.dropdown {
    position: static;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* right under the navbar */
    left: 0;
    width: 100%; /* span entire width of header */
    background: white;
    padding: 20px 0px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #d3d3d3;
    z-index: 999;
}



/* Show Dropdown */
.dropdown-content.show {
    display: block;
}

/* Resources Section */
.resources {
    display: flex;
    gap:85px;
    max-width: 1100px;
    margin: auto;
    padding-left: 20px;
    padding-top: 15px;
}

.resources-left h2 {
    font-size: 22px;
    font-weight: bold;
    padding-top: 0px;
}

.resources-left p {
    font-size: 14px;
    color: #444;
    max-width: 300px;
}

/* Links Section */
.resources-links {
    display: flex;
    gap: 165px;
}

.column1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.column1 a {
    color: black;
    font-size: 14.3px;
    
}

.column1 a:hover {
    color: #6366F1;
}
@media screen and (max-width:800px){
  
.nav-links{
    display: none;
}
.auth-buttons{
    display: none;
}
}
/* Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-right: 10px;
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding-top: 60px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-links {
    flex-direction: column;
    
    margin-top: 30px;
    
}
.sidebar-links a {
    color: #000;
    padding: 10px;
    
    margin-top: 30px;
}

.sidebar-links li {
    margin-bottom: 15px;
}

/* Sidebar Dropdown */
.sidebar-dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    padding-top: 20px;
}
.sidebar-dropdown-content a{
    color: #6366F1;
}
.sidebar-dropdown.active .sidebar-dropdown-content {
    display: block;
}

/* Sidebar Auth Buttons */
.sidebar-auth-buttons {
    margin-top: 20px;
    padding-left: 10px;
}

.sidebar-login {
    color: black;
    font-size: 16px;
    margin-right: 10px;
}

.sidebar-signup {
    background: #6366F1;
    color: white;
    padding: 7px 15px;
    border-radius: 10px;
}

/* Responsive Styling */
@media screen and (max-width: 800px) {
    .menu-toggle {
        display: block;
    
    }
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 7% 10px 6%;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 25%;
}

.footer-left .logo {
    width: 120px;
    height: 50px;
    margin-bottom: 10px;
}
.logo2{
    margin-bottom: 30px;
}
.footer-left h3 {
    font-size: 25px;
    font-weight: 650;
    margin-bottom: 20px;
}

.subscribe-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 6px;
    width: fit-content;
}

.subscribe-box input {
    border: none;
    outline: none;
    padding: 7px 19px;
    font-size: 14px;
    flex: 1;
}

.subscribe-box button {
    background-color: #6366F1;
    color: white;
    border: none;
    padding: 7px 16px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
}

.footer-links {
    display: flex;
    gap: 60px;
    margin-top: 20px;
}

.column h4 {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.column a {
    display: block;
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 6px;
}

.column a:hover {
    color: white;
}

hr {
    border: none;
    border-top: 1px solid white;
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #aaa;
}

  
.social-icons{
    display: flex;
}
.social-icons a {
    display: inline-block;
    background: transparent;
    border: 1px solid #aaa;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-left: 10px;
}

.social-icons a:hover {
    background: white;
    color: #1a1a1a;
}
.subscribe-box button :hover {
    background-color: #5660D9; /* Darker blue on hover */
}
@media screen and (max-width: 800px) {
.footer-left h3 {
    font-size: 20px;
    width: 200px;
}
.footer-links {
    gap: 20px;
}
}
@media screen and (max-width: 735px) {
.footer-container {
    flex-direction: column;
}
.footer-links {
    padding-top: 20px;
    gap: 80px;
}
}
@media screen and (max-width: 507px) {
    .footer-links {
        gap: 40px;
    }
    }
.hero-section {
    padding: 60px 0;
    padding-right: 15px;
}

.hero-heading {
    font-size: 3.7rem;
    font-weight: 750;
    color: #000;
    width: 580px;
    text-align: center;
    margin: 0 auto; /* Centers the text */
}
.hero-text {
    font-size: 1rem;
    color: #787878;
    max-width: 600px;
    margin: 20px auto 20px;
}
@media screen and (max-width: 900px) {
    .hero-heading {
        font-size: 2.8rem;
        font-weight: 700;
        width: auto;
        
    }
    .img-fluid{
        display: none;
    }
    .hero-section {
        padding-right: 0px;
    }
    #center_text{
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .hero-heading {
        font-size: 2.3rem;
        font-weight: 700;
        width: auto;
        
    }
    #started_btn {
        padding: 6px 13px;
        font-size: 0.9rem;

   }
}

.left-img {
    max-width: 250px; /* Adjust size as needed */
    position: relative;
    right: 20px;
    bottom: 10px;
}
.right-img {
    max-width: 140px;
    position: relative;
    top: 20px;
}
.btn-primary {
    background-color: #6366F1;
    border: none;
    padding: 7px 19px;
    font-size: 1.05rem;
    border-radius: 25px;
    margin-top: 15px;
}

.btn-primary:hover {
    background-color: #5660D9;
}
.fa-arrow-right {
    background-color: white; /* White background */
    color: #4F46E5; /* Change icon color (Adjust as needed) */
    border-radius: 50%;
    padding: 5px 6px;
    font-size: 12px;
    
}
.feature-card {
    border-radius: 20px;
    padding: 25px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin-top: 30px;
    padding-bottom: 30px;
}

@media screen and (min-width: 990px) {
    .feature-card{
        height: 350px;
      }
    }
  @media screen and (max-width: 1000px) {
    #f3_h5{
        width: auto;
      }
      #f4_h5{
          width: auto;
          padding-left: 0px;
        }
        
  }

.feature-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 40px;
    color: #6366F1;
    margin-bottom: 15px;
}

section{
    margin-bottom: 80px;
}
.container3 p {
    color: #787878;
    max-width: 700px;
    padding-top: 10px;
}
#feature_sub_text{
    font-size: 16px;
    margin: 0 auto;
}
#cards{
    margin: 0px 80px;
}
.feature-card h5{
        font-size: 20px;
        
    } 
.feature-card p{
        font-size: 16px;
    }
  
@media screen and (max-width: 770px) {
    #cards{
        margin: 0px 150px;
    }
        
}
@media screen and (max-width: 580px) {
    #cards{
        margin: 0px 80px;
    }
        
}
@media screen and (max-width: 450px) {
    #cards{
        margin: 0px 30px;
    }
        
}
@media screen and (max-width: 630px) {
    #feature_sub_text{
        padding-left:20px;
        padding-right:20px;
    }
        
}
.feature-box {
    text-align: center;
    padding: 20px;
    position: relative;
}
.feature-box h5{
    font-size:large;
}
.feature-box p{
    color: #787878;
    font-size: 14px;
    padding: 0px 30px;
}
.feature1-icon {
    font-size: 40px;
    color: black; /* Change color as needed */
    margin-bottom: 10px;
}

.process-container {
    position: relative;
    max-width: 900px;
    margin: auto;
}
.curved-line {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
svg {
    width: 100%;
    height: 100%;
}
.feature-icon {
    width: 70px;  /* Set a fixed width */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure responsiveness */
    margin-bottom: 10px; /* Add spacing */
}

.section-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}
.section-subtitle {
    text-align: center;
    color: gray;
    max-width: 500px;
    margin: auto;
    margin-bottom: 30px;
    font-size: 16px;
}
.feature-card1 {
    display: flex;
    align-items: center;
    padding: 15px 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background: white;
    transition: transform 0.2s ease-in-out;
}
.feature-card1:hover {
    transform: translateY(-5px);
}
.feature2-icon {
    font-size: 30px;
    color: #4A4AFF;
    margin-right: 15px;
}
.feature-title {
    font-weight: bold;
    margin-bottom: 5px;
}
.feature-detail{
    margin-bottom: 0px;
}
.free-section {
    background-color: #e6efff; /* Light blue background */
    padding: 100px 0;
}
.free-text h2 {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 30px;
}
.free-text p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}
.free-text a {
    color: #4a63e7;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    position: relative;
    top: 20px;
}
.free-text{
    margin-left: 20px;
}
.free-text a:hover {
    text-decoration: underline;
}

#free {
    margin: 0 auto; /* Centers the text container */
    transform: translateX(10%);
}
@media (min-width: 1000px) and (max-width: 1100px) {
    .hero-heading {
        position: relative;
        right: 9%;
    }
}
@media (min-width: 900px) and (max-width: 1000px) {
  .img_hero_left{
    position: relative;
    right: 15%;
  }
  .img_hero_right{
    position: relative;
    left: 10%;
  }
    .hero-heading {
        position: relative;
        right: 30%;
    }
}
@media screen and (max-width: 900px) {
    .free-text{
        margin-left: 0px;
    }
    #free {
        margin: 0px; /* Centers the text container */
        transform: none;
    }
    #free_img{
        
        position: relative;
        right: 10px;
    }

}

@media screen and (max-width: 800px) {
   
    #free_img{
        display: none;
    }
    .free-text{
       position: relative;
       left: 20%;
    }
}
@media screen and (max-width: 500px) {
    .free-text{
       position: relative;
       left: 10%;
    }
}
.tick {
    color: #05A34A; /* Change to any color you want */
    font-weight: bold;
    margin-right: 5px;
}
.testimonial-section {
    text-align: center;
    padding: 50px 0;
}

.testimonial-text {
    max-width: 800px;
    margin: 20px auto;
    color: #787878;
    font-size: 18px;
    line-height: 1.6;
}
.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.user-name {
    font-weight: bold;
    color: #3b42f5; /* Adjust color as needed */
}
.user-location {
    color: #333;
    font-weight: bold;
}
.testimonial-nav {
    font-size: 24px;
    cursor: pointer;
    font-size: 900;
}
.testimonial-nav:hover {
    color: #ffff;
    background-color: black;
}
.testimonial-nav{
    border: 1px solid black;
    border-radius: 50%;
    padding: 3px 8px 7px 8px;
}
.testimonial-section {
    position: relative;
    text-align: center;
    padding: 60px 0;
}

.testimonial-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    transform: translateX(100%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Left Arrow */
.left-arrow {
    left: 20px;
}

/* Right Arrow */
.right-arrow {
    right: 20px;
}
.last-section {
    display: flex;
    align-items: center;
    min-height: 60vh;
    padding: 50px 0;
}
.text h1 {
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.text p {
    color: #787878;
    font-size: 1.1rem;
}

.hero-img img {
    max-width: 100%;
    height: auto;
    margin-left: 150px;
}
@media screen and (max-width: 450px) {
    .hero-img img {
        max-width: 100%;
        height: auto;
        margin-left: 0px;
    }
    .text h1 {
        font-size: 2.3rem;
    }
    .text p {
        font-size: 1rem;
    }
    #view_heading{
        font-size: 24px;
    } 
    #view_sub_heading{
        font-size: 14px;
    } 
}
@media screen and (max-width: 370px) {
    .text h1 {
        font-size: 2.1rem;
    }
    .text p {
        font-size: 0.9rem;
    }
}
.carousel-container {
    max-width: 800px;
    margin: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}
.carousel-inner img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.carousel-control-prev, .carousel-control-next {
    filter: invert(100%);
}
.carousel-control-prev-icon{
    position: relative;
    right: 20px;
}
.carousel-control-next-icon{
    position: relative;
    left: 20px;
}
.view-section{
    margin-top:150px;
    margin-bottom: 100px;
}

.svg_background{
    width: 100%;
    height: 320px; /* Adjust as needed */
    background-image: url('/images/svg_img.svg'); /* Update the path */
    background-size: contain; /* Ensures the whole image fits */
    background-repeat: no-repeat; /* Prevents tiling */
    background-position: 285px 0px;
}
#how_it_works{
    margin-bottom: 200px;
    padding-bottom: 3rem;
    padding-top: 3rem;
}
#how_it_works p{
    font-size: 16px;
}
section{
    height: auto;
}
@media screen and (max-width:1000px){
    .svg_background{
        height:auto;
        background-image: none;
    }
    #how_it_works{
        margin-bottom: 50px;
        
    }
    
    
} 
  @media screen and (min-width: 1200px) {
    .feature-card{
        height: 300px;
      }
      .feature-card p{
        font-size: 17px;
      }
      #feature_sub_text{
    font-size: 17px;
}

  }
@media screen and (min-width: 1300px) {
   
.footer-left h3 {
    font-size: 26px;
}

.subscribe-box {
    padding: 7px;
}

.subscribe-box input {
    padding: 6px 21px;
    font-size: 15px;
}

.subscribe-box button {
    padding: 6px 17px;
    font-size: 16px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-left: 20px;
}
.svg_background{ 
    background-position: 370px 0px;
}
}
@media (max-width: 766px) {
   #prevTestimonial{
    position: absolute;
    left: 1%;
    
    
   }
   #nextTestimonial{
    position: absolute;
    left: 75%;
    bottom: 200px;
   }
   .testimonial-text{
    max-width: 80%;
    font-size: 1.1rem;
   }
}

@media (max-width: 650px) {
   #prevTestimonial{
    left: -3%;
   }
   #nextTestimonial{
    left: 80%;
   }
   .testimonial-text{
    max-width: 75%;
    font-size: 1.1rem;
   }
}
@media (max-width: 580px) {
  
   .testimonial-text{
    max-width: 70%;
    font-size: 1rem;
   }
   #prevTestimonial{
    left: -3%;
   }
   .testimonial-nav {
    font-size: 18px;
    height: 40px;
    width: 40px;
   }
}
@media (max-width: 480px) {
  
   .testimonial-text{
    max-width: 65%;
    font-size: 0.9rem;
   }
   #nextTestimonial{
    left: 75%;
   }
}
@media (max-width: 400px) {
  
   .testimonial-text{
    max-width: 65%;
    font-size: 0.85rem;
   }
   #nextTestimonial{
    left: 76%;
   }
   #prevTestimonial{
    left: -7%;
   }
   .testimonial_h{
    font-size: 1.2rem;
   }
}
@media (max-width: 350px) {
  
   .testimonial-text{
    max-width: 65%;
    font-size: 0.85rem;
   }
   #nextTestimonial{
    left: 73%;
   }
   #prevTestimonial{
    left: -9%;
   }
   
}


@media screen and (min-width: 1500px) {
.hero-heading {
        margin-top: 40px;    
}
.hero-text {
    font-size: 1.05rem;
    max-width: 1000px;
    margin-top: 30px;
}
 #feature_sub_text{
        font-size: 1.1rem;
        
    } 
#how_it_works p {
    font-size: 1.1rem;
    max-width: 900px;
  }
  .steps{
    max-width: 350px;
  }
  .section-subtitle {
    font-size: 1.1rem;
    max-width: 700px; /* Wider subtitle */
  }
    .column h4 {
    
    font-size: 18px;
}

.column a {
    font-size: 18px;
}
.footer {
    padding: 60px 7% 20px 6%;
}
.social-icons a {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-left: 20px;
}
#cards{
        margin: 0px 150px;
    }
    .feature-card {
        height: 310px;
    }
      .feature-card p{
        font-size: 18px;
        
    }   
    .feature-card h5{
        font-size: 21px;
        
    } 
    .svg_background{ 
    background-position: 450px 0px;
}
.feature-title {
    font-size: 1.2rem;
  }

  .feature-detail {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1600px) {
.hero-heading {
        margin-top: 40px;
        font-size: 4rem;
  
}
.hero-text {
    font-size: 1.2rem;
    margin-top: 30px;
}
#started_btn {
        padding: 6px 19px;
        font-size: 1.3rem;

   }
    #feature_sub_text{
        font-size: 1.2rem;
        max-width: 1000px;
    } 
   #how_it_works p {
    font-size: 1.08rem;
    max-width: 1000px;
  }
   #why_tracklo {
    max-width: 1400px; /* Bootstrap LG container size */
  }
  .section-subtitle {
    font-size: 1.2rem;
    max-width: 800px; /* Wider subtitle */
  }
.footer-left h3 {
    font-size: 29px;
}

.subscribe-box {
    padding: 7px;
}

.subscribe-box input {
    padding: 7px 23px;
    font-size: 16px;
}

.subscribe-box button {
    padding: 7px 18px;
    font-size: 18px;
}
.social-icons a {
    width: 50px;
    height: 50px;
    font-size: 19px;
    margin-left: 20px;
}
.carousel-container {
    max-width: 850px;
}
}
@media (min-width: 1800px) {
 

.subscribe-box input {
    padding: 6px 23px;
    font-size: 18px;
}

.subscribe-box button {
    padding: 6px 17px;
    font-size: 18px;
}
.footer-left h3 {
    font-size: 30px;
}
.social-icons a {
    width: 50px;
    height: 50px;
    font-size: 19px;
    margin-left: 20px;
}
 .svg_background{ 
    background-position: 560px 0px;
}
.feature-card{
        height: 300px;
      }
      #cards{
        margin: 0px 200px;
    }
}
@media (min-width: 1400px) {

    /* Bigger logo */
    .logo img {
        width: 160px;
        height: 60px;
    }

    /* Nav link size and spacing */
    .nav-links a {
        font-size: 17px;
        gap: 30px;
    }

    /* Navigation layout spacing */
    .nav-links {
        gap: 40px;
    }

    /* Auth buttons */
    .auth-buttons .login {
        font-size: 17px;
    }

    .auth-buttons .signup {
        font-size: 16px;
        padding: 6px 20px;
        border-radius: 12px;
    }

    /* Top bar font */
    .top-bar {
        font-size: 15px;
        padding: 3px 0;
    }

    /* Dropdown Resources */
    .resources {
        gap: 110px;
        max-width: 1300px;
        padding-left: 30px;
    }

    .resources-left h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .resources-left p {
        font-size: 15px;
        max-width: 380px;
    }

    .column1 a {
        font-size: 15px;
    }

    .dropdown-content {
        padding: 30px 0;
    }
}


@media (min-width: 1600px) {

    /* Bigger logo */
    .logo img {
        width: 170px;
        height: 60px;
    }

    /* Nav link size and spacing */
    .nav-links a {
        font-size: 19px;
    }

    /* Auth buttons */
    .auth-buttons .login {
        font-size: 19px;
    }

    .auth-buttons .signup {
        font-size: 19px;
        padding: 4px 19px;
    }

    /* Top bar font */
    .top-bar {
        font-size: 18px;
        padding: 2px 0;
    }

    .resources-left h2 {
        font-size: 25px;
    }

    .resources-left p {
        font-size: 16px;
    }

    .column1 a {
        font-size: 18px;
    }
   
}

