* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: white;
    height: 100vh;
    width: 100vw;
}
body::-webkit-scrollbar{
    display: none;
}
.tcl{
    display: none;
}
.topnav{
    display: none;
}
/* Container for both WhatsApp and Call buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  /* WhatsApp floating button styles */
  .whatsapp-icon, .call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
  }
  
  /* WhatsApp icon styles */
  .whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp gradient */
  }
  
  /* Call icon styles */
  .call-icon {
    background: linear-gradient(135deg, #1f6bcf, #1965bd); /* Orange gradient for the call button */
  }
  
  /* Icon size */
  .whatsapp-icon i, .call-icon i {
    font-size: 36px;
  }
  
  /* Hover effect - glowing and growing effect for both icons */
  .whatsapp-icon:hover, .call-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(0, 255, 100, 0.5), 0 0 20px rgba(0, 255, 100, 0.7);
    animation: pulse 1s infinite, glow 1s infinite alternate;
  }
  
  /* Call button hover effect with orange glow */
  .call-icon:hover {
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.5), 0 0 20px rgba(255, 87, 34, 0.7);
  }
  
  /* Pulse animation for the hover state */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Glow effect animation */
  @keyframes glow {
    0% {
      box-shadow: 0 0 15px rgba(0, 255, 100, 0.2);
    }
    100% {
      box-shadow: 0 0 30px rgba(0, 255, 100, 0.5);
    }
  }
  
  /* Glow effect animation for call button */
  @keyframes glow-call {
    0% {
      box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
    }
    100% {
      box-shadow: 0 0 30px rgba(25, 110, 208, 0.5);
    }
  }
  
  /* Add animated wave effect around the WhatsApp button */
  .whatsapp-icon::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(0, 255, 100, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: wave 2.5s infinite;
  }
  
  /* Wave effect around the call button */
  .call-icon::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(36, 123, 199, 0.877);
    border-radius: 50%;
    opacity: 0;
    animation: wave-call 2.5s infinite;
  }
  
  /* WhatsApp wave animation */
  @keyframes wave {
    0% {
      transform: scale(0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }
  
  /* Call wave animation */
  @keyframes wave-call {
    0% {
      transform: scale(0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }
/* Fixed Contact Bar */
.fixed-contact-bar {
   
    width: 100%;
    background-color: #00bf63;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

/* Phone number on the left */
.contact-phone {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.contact-phone i {
    margin-right: 10px;
    font-size: 22px;
}

/* Phone Text */
.phone-text {
    color: #fff;
    transition: color 0.3s ease;
}

/* Social icons on the right */
.social-icons {
    display: flex;
    gap: 20px;  /* Space between icons */
}

/* Contact item (social media icons) */
.contact-item {
    color: #fff;
    font-size: 24px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover Effects */
.contact-item:hover {
    transform: scale(1.1) rotate(10deg);
    color: #f1f1f1;
}

.contact-phone:hover .phone-text {
    color: #f1f1f1;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;  /* Increased padding */
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100px;  /* Increased height */
    width: 100%;
}
.logo{
    height: 100%;
    width: 20%;
    margin-bottom: 25px;
}
.logo img {
    width:100px;
    height: 90px;
    object-fit: contain;
}

.nav-links {
    height: 100%;
    width: 60%;
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a i {
    margin-right: 10px;
    font-size: 22px;
}

.nav-links a:hover {
    color: #28a745;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: #28a745;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.order-btn {
    background-color: #00bf63;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.order-btn:hover {
    background-color: #218838;
    transform: scale(1.05);
}

.container {
    width: 100%;
    /* max-width: 800px; */
    /* margin: 50px auto; */
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color:#00bf63;
    /* border-radius: 10px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #fffdfd;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.payment-method {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    align-items: center;
}

.payment-method h2 {
    color: #444;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
    display: flex;
    align-items: center;
}

.payment-method h2 .icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

.payment-method p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin: 10px 0;
}

.qr-codes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.qr-code {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code img {
    max-width: 300px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-code img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.qr-code p {
    margin-top: 10px;
    font-size: 1em;
    color: #666;
}







/* Footer Styling */
.footer {
    background-color: #222;
    color: white;
    padding: 50px 20px;
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
}

/* Footer Logo Section */
.footer-logo {
    height:100%;
    width:20%;
    margin-bottom: 30px;
}

.footer-logo img {
    
    width: 150px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Contact Section */
.footer-contact {
    height:100%;
    width:20%;
    margin-bottom: 30px;
    
}

.footer-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #22BA82;
}

.footer-contact p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
}

.footer-contact p i {
    margin-right: 10px;
    color: #22BA82;
}

.footer-contact a {
    color: #22BA82;
    text-decoration: none;
    font-weight: bold;
}

/* Footer Quick Links Section */
.footer-links {
    
    height:100%;
    width:10%;
    overflow: hidden;
    margin-bottom: 30px;
}

.footer-links h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #22BA82;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #22BA82;
}

/* Footer Social Media Section */
.footer-social {
    height:100%;
    width:20%;
    margin-bottom: 30px;
    text-align: center;
}

.footer-social h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #22BA82;
}

.footer-social .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social .social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social .social-icons a:hover {
    color: #22BA82;
}

/* Footer Map Section */
.footer-map {
    height:100%;
    width:20%;
    margin-bottom: 30px;
}

.footer-map iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #22BA82;
    text-decoration: none;
}

/* Icons */
.footer-contact p i, .footer-social a {
    font-size: 1.2rem;
}




@media screen and (max-width:600px) {




    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Arial', sans-serif;
        background-color: white;
        height: 100vh;
        width: 100vw;
    }
    body::-webkit-scrollbar{
        display: none;
    }
    .tcl{
        height: 100px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
       
    }
    .tcl img{
        height: 100%;
        width: 100%;
        object-fit: contain;
    }
    .topnav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
        padding-top: 0px;
        background-color:rgb(0, 191, 99);
        margin-bottom: 15px;
      }
      
      .topnav #myLinks {
       
        display: none;
      }
      
      .topnav a {
        color:white;
        /* padding: 16px 6px; */
        margin-bottom:20px;
        text-decoration: none;
        font-size: 20px;
        display: flex;
        align-items: center;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight:400;
        justify-content: center;
       
      }
      #cc{
        margin: 0;
        padding: 0;
        color: #222;    
      }
      .topnav a.icon {
        border: 0.5px rgba(49, 49, 49, 0.756) solid;
        border-radius: 13px;
        width: 70px;
        height: 40px;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background:white;
        color: black;
        /* display: block; */
        /* position: absolute; */
        /* right: 10px; */
        /* top: 0; */
        
      }
      
      .topnav a:hover {
        
        background-color: #ddd;
        color: black;
       
      }
    /* Container for both WhatsApp and Call buttons */
    .floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }
      
      /* WhatsApp floating button styles */
      .whatsapp-icon, .call-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        color: white;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        position: relative;
        overflow: hidden;
      }
      
      /* WhatsApp icon styles */
      .whatsapp-icon {
        background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp gradient */
      }
      
      /* Call icon styles */
      .call-icon {
        background: linear-gradient(135deg, #1f6bcf, #1965bd); /* Orange gradient for the call button */
      }
      
      /* Icon size */
      .whatsapp-icon i, .call-icon i {
        font-size: 36px;
      }
      
      /* Hover effect - glowing and growing effect for both icons */
      .whatsapp-icon:hover, .call-icon:hover {
        transform: scale(1.2);
        box-shadow: 0 8px 20px rgba(0, 255, 100, 0.5), 0 0 20px rgba(0, 255, 100, 0.7);
        animation: pulse 1s infinite, glow 1s infinite alternate;
      }
      
      /* Call button hover effect with orange glow */
      .call-icon:hover {
        box-shadow: 0 8px 20px rgba(255, 87, 34, 0.5), 0 0 20px rgba(255, 87, 34, 0.7);
      }
      
      /* Pulse animation for the hover state */
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.1);
        }
        100% {
          transform: scale(1);
        }
      }
      
      /* Glow effect animation */
      @keyframes glow {
        0% {
          box-shadow: 0 0 15px rgba(0, 255, 100, 0.2);
        }
        100% {
          box-shadow: 0 0 30px rgba(0, 255, 100, 0.5);
        }
      }
      
      /* Glow effect animation for call button */
      @keyframes glow-call {
        0% {
          box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
        }
        100% {
          box-shadow: 0 0 30px rgba(25, 110, 208, 0.5);
        }
      }
      
      /* Add animated wave effect around the WhatsApp button */
      .whatsapp-icon::before {
        content: "";
        position: absolute;
        top: -20px;
        left: -20px;
        width: 110px;
        height: 110px;
        border: 2px solid rgba(0, 255, 100, 0.5);
        border-radius: 50%;
        opacity: 0;
        animation: wave 2.5s infinite;
      }
      
      /* Wave effect around the call button */
      .call-icon::before {
        content: "";
        position: absolute;
        top: -20px;
        left: -20px;
        width: 110px;
        height: 110px;
        border: 2px solid rgba(36, 123, 199, 0.877);
        border-radius: 50%;
        opacity: 0;
        animation: wave-call 2.5s infinite;
      }
      
      /* WhatsApp wave animation */
      @keyframes wave {
        0% {
          transform: scale(0.6);
          opacity: 1;
        }
        100% {
          transform: scale(1.8);
          opacity: 0;
        }
      }
      
      /* Call wave animation */
      @keyframes wave-call {
        0% {
          transform: scale(0.6);
          opacity: 1;
        }
        100% {
          transform: scale(1.8);
          opacity: 0;
        }
      }
    /* Fixed Contact Bar */
    .fixed-contact-bar {
        height: 50px;
        width: 100%;
        background-color: rgb(0, 191, 99);
        padding: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Phone number on the left */
    .contact-phone {
        width: 100%;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
    }
    
    .contact-phone i {
        margin-right: 10px;
        font-size: 16px;
    }
    
    /* Phone Text */
    .phone-text {
        color: #fff;
        transition: color 0.3s ease;
    }
    
    /* Social icons on the right */
    .social-icons {
        display: none;
        /* display: flex; */
        gap: 20px;  /* Space between icons */
    }
    
    /* Contact item (social media icons) */
    .contact-item {
        color: #fff;
        font-size: 24px;
        transition: transform 0.3s ease, color 0.3s ease;
    }
    
    /* Hover Effects */
    .contact-item:hover {
        transform: scale(1.1) rotate(10deg);
        color: #f1f1f1;
    }
    
    .contact-phone:hover .phone-text {
        color: #f1f1f1;
    }
    
    
    
    .navbar {
        display: none;
        /* display: flex; */
        justify-content: space-between;
        align-items: center;
        padding: 20px 30px;  /* Increased padding */
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        height: 100px;  /* Increased height */
        width: 100%;
    }
    .logo{
        height: 100%;
        width: 20%;
        margin-bottom: 25px;
    }
    .logo img {
        width:100px;
        height: 90px;
        object-fit: contain;
    }
    
    .nav-links {
        height: 100%;
        width: 60%;
        list-style: none;
        display: flex;
        align-items: center;
    }
    
    .nav-links li {
        margin: 0 20px;
    }
    
    .nav-links a {
        text-decoration: none;
        color: #333;
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        position: relative;
        padding-bottom: 5px;
    }
    
    .nav-links a i {
        margin-right: 10px;
        font-size: 22px;
    }
    
    .nav-links a:hover {
        color: #28a745;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        width: 0%;
        height: 3px;
        background-color: #28a745;
        bottom: 0;
        left: 0;
        transition: width 0.3s ease;
    }
    
    .nav-links a:hover::before {
        width: 100%;
    }
    
    .order-btn {
        background-color: rgb(0, 191, 99);
        color: #fff;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 10px;
        font-size: 18px;
        font-weight: 600;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .order-btn:hover {
        background-color: #218838;
        transform: scale(1.05);
    }
  



    .container {
        width: 100%;
        /* max-width: 800px; */
        /* margin: 50px auto; */
        padding: 20px;
        margin-top: 0px;
        margin-bottom: 0px;
        background-color:rgb(0, 191, 99);
        /* border-radius: 10px; */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    h1 {
        text-align: center;
        color: #fffdfd;
        margin-bottom: 40px;
        font-size: 26px;
    }
    
    .payment-method {
        margin-bottom: 30px;
        padding: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        background-color: #fafafa;
        display: flex;
        flex-direction: column;
        align-items:center;
        justify-content: center;
        align-items: center;
    }
    
    .payment-method h2 {
        color: #444;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 10px;
        margin-bottom: 20px;
        font-size:26px;
        display: flex;
        align-items: center;
    }
    
    .payment-method h2 .icon {
        width: 30px;
        height: auto;
        margin-right: 10px;
    }
    
    .payment-method p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin: 10px 0;
    }
    
    .qr-codes {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .qr-code {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .qr-code img {
        max-width: 300px;
        border: 1px solid #ddd;
        padding: 10px;
        background-color: #fff;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .qr-code img:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    .qr-code p {
        margin-top: 10px;
        font-size: 1em;
        color: #666;
    }
     
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
     /* Footer Styling */
     .footer {
        background-color: #222;
        color: white;
        padding: 20px;
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items:flex-start;
    }
    
    /* Footer Logo Section */
    .footer-logo {
        height:100%;
        width:100%;
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        height: auto;
        width: 150px;
        margin-bottom: 15px;
    }
    
    .footer-logo p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: justify;
    }
    
    /* Footer Contact Section */
    .footer-contact {
        height:100%;
        width:100%;
        margin-bottom: 30px;
        
    }
    
    .footer-contact h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #22BA82;
    }
    
    .footer-contact p {
        display: flex;
        align-items: center;
        font-size: 1rem;
        line-height: 1.6;
        margin: 10px 0;
    }
    
    .footer-contact p i {
        margin-right: 10px;
        color: #22BA82;
    }
    
    .footer-contact a {
        color: #22BA82;
        text-decoration: none;
        font-weight: bold;
    }
    
    /* Footer Quick Links Section */
    .footer-links {
        
        height:100%;
        width:100%;
        overflow: hidden;
        margin-bottom: 30px;
    }
    
    .footer-links h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #22BA82;
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        color: white;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-links ul li a:hover {
        color: #22BA82;
    }
    
    /* Footer Social Media Section */
    .footer-social {
        height:100%;
        width: 100%;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content:center;
       
    }
    
    .footer-social h4 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #22BA82;
    }
    
    .footer-social .social-icons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-social .social-icons a {
        color: white;
        font-size: 1.5rem;
        transition: color 0.3s;
    }
    
    .footer-social .social-icons a:hover {
        color: #22BA82;
    }
    
    /* Footer Map Section */
    .footer-map {
        height:100%;
        width:100%;
        margin-bottom: 30px;
    }
    
    .footer-map iframe {
        width: 100%;
        height: 250px;
        border: none;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Footer Bottom Section */
    .footer-bottom {
        text-align: center;
        padding: 20px;
        background-color: #111;
        color: #777;
        font-size: 0.9rem;
    }
    
    .footer-bottom a {
        color: #22BA82;
        text-decoration: none;
    }
    
    /* Icons */
    .footer-contact p i, .footer-social a {
        font-size: 1.2rem;
    }
  
  
  
  
  
  
  
  
  
  
  
  }
  