/* ------------------------------------------------------------------------------- */
* {
     margin: 0;
     padding: 0;
}

/* ------------------------------------------------------------------------------- */



/* ----------------------------------------------------------------------------------------- */
::-webkit-scrollbar {
     width: 12px;
     /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
     background: #f1f1f1;
     /* Track color */
}

::-webkit-scrollbar-thumb {
     background-color: #888;
     /* Scrollbar thumb color */
     border-radius: 6px;
     /* Rounded corners for the scrollbar */
     border: 3px solid #f1f1f1;
     /* Adds space around the thumb */
}

::-webkit-scrollbar-thumb:hover {
     background: #555;
     /* Hover state color */
}

* {
     scrollbar-width: thin;
     /* Makes the scrollbar thin */
     scrollbar-color: #888 #f1f1f1;
     /* Thumb and track color */
}

/* scrollbar end */
/* -------------------------------------------------------------------------------------- */






* {
     scrollbar-width: thin;
     /* Makes the scrollbar thin */
     scrollbar-color: #888 #f1f1f1;
     /* Thumb and track color */
}

/* scrollbar end */
/* -------------------------------------------------------------------------------------- */




/* ------------------------------------------------------------------------------- */
/* go up button */
#button {
     position: fixed;
     bottom: 30px;
     right: 30px;
     width: 50px;
     height: 50px;
     background-color: #007bff;
     color: white;
     text-align: center;
     line-height: 50px;
     font-size: 18px;
     border-radius: 50%;
     cursor: pointer;
     opacity: 0;
     /* Initially hidden (transparent) */
     pointer-events: none;
     /* Prevent interaction when hidden */
     transition: opacity 0.4s ease;
     /* Smooth transition for opacity */
     animation: float 3s ease-in-out infinite;
     /* Up-down animation */
}

/* Button appears when scrolled */
#button.show {
     opacity: 1;
     /* Fully visible */
     pointer-events: auto;
     /* Allow interaction */
}

/* Add hover effects */
#button:hover {
     background-color: #0056b3;
}

/* Floating up-down animation */
@keyframes float {
     0% {
          transform: translateY(0);
     }

     50% {
          transform: translateY(-10px);
          /* Move up by 10px */
     }

     100% {
          transform: translateY(0);
          /* Move back to original position */
     }
}

/* Responsive adjustments */
@media (max-width: 600px) {
     #button {
          width: 40px;
          height:50px;
          line-height: 40px;
          font-size: 16px;
          bottom: 20px;
          right: 30px;
     }
}

/* Responsive adjustments */


/* Button appears when scrolled */
#button.show {
     z-index: 999;
     margin-right: 5px;
     transition: 0.5s;
     display: block;
}

/* Add hover effects */
#button:hover {
     background-color: #0056b3;
}

/* ------------------------------------------------------------------------------- */














/* <!-- pop up ---------------------------------------------------------------------------------------- --> */
.modal-content {
     border-radius: 15px;
     overflow: hidden;
}

.modal-header {
     background-color: #343a40;
     color: white;
}

.modal-footer {
     background-color: #f8f9fa;
}

/* Add background overlay effect */
.modal-backdrop.show {
     opacity: 0.8;
     /* Adjust the opacity for the overlay */
}

/* Animate the modal appearance */
.fade.show {
     transition: opacity 0.5s ease;
}

.modal-body img {
     animation: zoomIn 0.5s;
     width: 100%;
     /* Make image responsive */
     height: auto;
}

/* Zoom in animation */
@keyframes zoomIn {
     from {
          transform: scale(0.5);
          opacity: 0;
     }

     to {
          transform: scale(1);
          opacity: 1;
     }
}

/* --------------------------------------------------------------------------------- */























/* ------------------------------------------------------------------------------- */
/* Initial navbar style */
.navbar {
     z-index: 999;
     top: 0;
     position: sticky;
     background-color: #0056b3 !important;
     /* Royal blue */
     transition: all 0.4s ease;
     /* Smooth transition */
     padding: 5px 10px;
}

/* Navbar style when scrolled */
.navbar.scrolled {
     padding: 10px 10px;
     /* Shrink padding */
     background-color: rgba(86, 65, 225, 0.9);
     /* Slightly transparent on scroll */
     box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
     /* Add shadow for effect */
}

.navbar-brand img {
     height: 40px;
     /* Adjust the height of the logo as needed */
}

.navbar-nav {
     margin-left: auto;
     /* Pushes the menu items to the right */
}

.nav-link {
     color: aliceblue;
     font-weight: bold;
     /* Make menu items bold */
     padding: 1rem 1.25rem;
     /* Adjust padding for proper gap */
}

.nav-item {
     font-size: 17px !important;
     margin-right: 20px;
}

/* Navbar style when scrolled */
.navbar.scrolled {
     padding: 10px 10px;
     background-color: rgba(0, 0, 0, 0.8);
     /* You can change this */
     box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.nav-link:hover {
     color: gold;
     /* Optional: add hover effect */
}

.dropdown-menu {
     background-color: royalblue;
     /* Match dropdown background with the navbar */
}

.dropdown-item {
     color: white;
     /* Make dropdown items white */
     font-weight: bold;
     transition: 0.5s;
     /* Make dropdown items bold */
}

.dropdown-item:hover {
     background-color: rgba(255, 255, 255, 0.917);
     /* Optional: add hover effect */
}

/* Navbar Dropdown Hover */
.nav-item.dropdown:hover .dropdown-menu {
     display: block;
     margin-top: 0;
     /* Optional: Adjust the margin for better alignment */
}

.dropdown-menu {
     display: none;
     /* Initially hidden */
}

/* ------------------------------------------------------------------------------- */




















/* ------------------------------------------------------------------------------- */
/* Banner css */
.carousel-item {
     height: 600px;
}

.carousel-item img {
     object-fit: cover;
     /* Cover the container without distortion */
     width: 100%;
     height: 100%;
}

/* Full-screen black overlay */
.carousel-caption {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.457);
     /* Black overlay with 60% opacity */
     color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
}

.carousel-caption h5,
.carousel-caption p {
     margin: 0;
}

.carousel-caption p {
     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
     font-size: 5.5em !important;
     letter-spacing: 10px;
     color: #b40808; 
     background-image: linear-gradient(45deg, #b40808 45%, #6716ca 49%, #10298e 99%); 
     background-clip: text; 
     -webkit-background-clip: text; 
     -webkit-text-fill-color: transparent; 
}

#ban_button {
     border: none;
     font-size: 1em;
     width: 17%;
     color: #ffffff !important;
     background: linear-gradient(to right, #c22003ad, #1c2863) !important;
}

#banner-Special {
     color: #007BFF !important;
     letter-spacing: 20px;
     font-family: "Rowdies", sans-serif;
     background-color: rgba(255, 255, 255, 0);
     border-bottom: 1px solid black;
     padding-top: 19em;
}

#banner-Special button {
     transition: 0.5s;
     /* border: 1px solid black !important; */
     color: #000000 !important;
     background-color: #ffffff;
     border: none;
     width: 10%;
}

#banner-Special button:hover {

     color: #ffffff !important;
     background-color: #000000;
}


/* Adjust text size for responsiveness */
@media (max-width: 768px) {
     #banner-Special button {
          font-size: 1.1em;
          width: 50%;
     }
     #ban_button {
          width: 40%;
     }
     .carousel-caption h5 {
          font-size: 5rem !important;
     }
     .carousel-caption p {
          font-size: 24px !important; 
     }
}

/* banner css */
/* ------------------------------------------------------------------------------- */








































/* ------------------------------------------------------------------------------- */
/* Header Styles */
header {
     background: linear-gradient(to right, #c22003ca, #1931aa);
     color: #fff;
     padding: 40px;
     text-align: center;
     width: 100%;
     box-sizing: border-box;
}

header h1 {
     font-weight: bold;
     letter-spacing: 14px;
     font-family: "Bebas Neue", sans-serif;
     margin: 0;
     font-size: 4em;
     color: #fff;
     animation: fadeIn 2s ease-out;
}

header p {
     font-size: 1.2em;
     margin-top: 10px;
     color: #ffffff;
     font-weight: 300;
}

@media (max-width: 552px) {
     header h1 {
          letter-spacing: 10px;
          font-size: 1.7em;
     }
}

/* header end here */
/* ------------------------------------------------------------------------------- */












/* ------------------------------------------------------------------------------- */
/* About Us Section */
.about-us {
     cursor: pointer;
     padding: 50px;
     background: #ffffff;
     text-align: center;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     margin: 60px auto;
     border-radius: 15px;
     transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
     width: 90%;
     max-width: 1500px;
}

/* Add hover effect */
.about-us:hover {
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.about-us h2 {
     font-size: 5em !important;
     color: #000000 !important;
     margin-bottom: 20px;
     position: relative;
     /* To position the underline */
     animation: slideIn 1s ease-out;
}

/* Underline effect with color and animation */
.about-us h2::after {
     content: '';
     position: absolute;
     left: 25%;
     bottom: -10px;
     /* Positioning the underline below the text */
     width: 10%;
     /* Start with no width for the animation */
     height: 3px;
     background: linear-gradient(to right, #9624f4, #ff170f);
     /* Set the underline color */
     transition: width 0.5s ease-out;
     /* Animate the width for the underline */
}

.about-us h2:hover::after {
     width: 50%;
     margin: auto;
     /* On hover, expand the underline to full width */
}


.about-us p {
     font-size: 1.4em;
     margin: 20px 0;
     color: #000000;
     line-height: 1.8;
}

.about-us ul {
     list-style: none;
     padding: 0;
     margin: 20px 0;
}

.about-us li {
     text-align: start;
     font-size: 0.9em;
     margin-bottom: 15px;
     color: #000000;
     transition: color 0.3s;
}

.about-us li:hover {
     color: #333;
     /* text-decoration: underline; */
}

@media (max-width: 500px) {
     .about-us h2 {
          font-size: 2.8em !important;
     }

     .about-us li {
          text-align: start;
     }
     .about-us:hover {
          background-color: #ffffff;
          transform: none;
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
     }
}

/* ------------------------------------------------------------------------------- */























/* ------------------------------------------------------------------------------- */
/* Services Offered Section */
.services {
     margin-top: 20vh;
     cursor: pointer;
     padding: 50px;
     background: #ffffff;
     text-align: center;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     margin: 60px auto;
     border-radius: 15px;
     transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
     width: 90%;
     max-width: 1500px;
}
.services:hover {
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.services h2 {
     font-size: 4em !important;
     color: #000000;
     margin-bottom: 20px;
     position: relative;
     /* To position the underline */
     animation: slideIn 1s ease-out;

}

.services h2::after {
     content: '';
     position: absolute;
     left: 20%;
     bottom: -10px;
     /* Positioning the underline below the text */
     width: 10%;
     /* Start with no width for the animation */
     height: 3px;
     background: linear-gradient(to right, #9624f4, #ff170f);
     /* Set the underline color */
     transition: width 0.5s ease-out;
     /* Animate the width for the underline */
}

.services h2:hover::after {
     width: 60%;
     margin: auto;
     /* On hover, expand the underline to full width */
}

.services-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
}

.service-item {
     flex: 1;
     min-width: 250px;
     max-width: 300px;
     background: #f9f9f9;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s, box-shadow 0.3s;
     padding: 20px;
     text-align: center;
}

.service-item img {
     border-radius: 20px;
     width: 100%;
     height: 25vh;
     border-bottom: 2px solid #ddd;
     transition: transform 0.3s;
}

.service-item h3 {
     margin: 15px 0;
     font-size: 1.8em;
     color: #333;
}

.service-item p {
     font-size: 1.1em;
     color: #666;
}

.service-item:hover {
     transform: scale(1.05);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.service-item img:hover {
     transform: scale(1.1);
}
@media (max-width: 500px) {
     .services:hover {
          background-color: #ffffff;
          transform: none;
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
     }
     .services h2{
          font-size: 1.6em !important;
     }
}
/* ------------------------------------------------------------------------------- */



















/* ------------------------------------------------------------------------------- */
/* Packages Section */
.packages {
     cursor: pointer;
     padding: 50px;
     background: #ffffff;
     text-align: center;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     margin: 60px auto;
     border-radius: 15px;
     transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
     width: 90%;
     max-width: 1500px;
}
.packages:hover {
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.packages h2 {
     font-size: 4em !important;
     color: #000000;
     margin-bottom: 20px;
     position: relative;
     /* To position the underline */
     animation: slideIn 1s ease-out;
}

.packages h2::after {
     content: '';
     position: absolute;
     left: 20%;
     bottom: -10px;
     /* Positioning the underline below the text */
     width: 10%;
     /* Start with no width for the animation */
     height: 3px;
     background: linear-gradient(to right, #9624f4, #ff170f);
     /* Set the underline color */
     transition: width 0.5s ease-out;
     /* Animate the width for the underline */
}

.packages h2:hover::after {
     width: 60%;
     margin: auto;
     /* On hover, expand the underline to full width */
}

.packages-grid {
     display: flex;
     flex-wrap: wrap;
     gap: 20px;
     justify-content: center;
}

.package-item {
     flex: 1;
     min-width: 250px;
     max-width: 300px;
     background: #f9f9f9;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s, box-shadow 0.3s;
     padding: 20px;
     text-align: center;
}

.package-item img {
     border-radius: 20px;
     height: 25vh;
     border-bottom: 2px solid #ddd;
     transition: transform 0.3s;
}

.package-item h3 {
     margin: 15px 0;
     font-size: 1.8em;
     color: #333;
}

.package-item p {
     font-size: 1.1em;
     color: #666;
}

.package-item:hover {
     transform: scale(1.05);
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.package-item img:hover {
     transform: scale(1.1);
}

/* ------------------------------------------------------------------------------- */










/* ------------------------------------------------------------------------------- */
/* Nearest Locations Section */
.location-info {
     cursor: pointer;
     padding: 50px;
     background: #ffffff;
     text-align: center;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     margin: 60px auto;
     border-radius: 15px;
     transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
     width: 90%;
     max-width: 1500px;
}
.location-info:hover {
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.location-info h2 {
     font-size: 4em !important;
     color: #000000;
     margin-bottom: 20px;
     position: relative;
     /* To position the underline */
     animation: slideIn 1s ease-out;
}

.location-info h2::after {
     content: '';
     position: absolute;
     left: 20%;
     bottom: -10px;
     /* Positioning the underline below the text */
     width: 10%;
     /* Start with no width for the animation */
     height: 3px;
     background: linear-gradient(to right, #9624f4, #ff170f);
     /* Set the underline color */
     transition: width 0.5s ease-out;
     /* Animate the width for the underline */
}

.location-info h2:hover::after {
     width: 60%;
     margin: auto;
     /* On hover, expand the underline to full width */
}

.location-info ul {
     list-style: none;
     padding: 0;
     margin: 20px 0;
}

.location-info li {
     font-size: 1.3em;
     margin-bottom: 15px;
     color: #666;
}

/* ------------------------------------------------------------------------------- */





















/* ------------------------------------------------------------------------------- */
/* Map Section */
.map {
     padding: 50px;
     background: #f9f9f9;
     text-align: center;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     margin: 20px auto;
     border-radius: 15px;
     width: 90%;
     height: 50vh;
     max-width: 1200px;
}

.map h2 {
     font-size: 3em;
     color: #333;
     margin-bottom: 20px;
}

.map p {
     font-size: 1.3em;
     color: #666;
}

.map-link {
     font-size: 1.3em;
     color: #007bff;
     text-decoration: none;
     transition: color 0.3s;
}

.map-link:hover {
     color: #0056b3;
     text-decoration: underline;
}

/* ------------------------------------------------------------------------------- */

































/* ------------------------------------------------------------------------------- */
/* Contact Information Section */
.contact-info {
     padding: 50px;
     background: #ffffff !important;
     text-align: left;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     margin: 20px auto;
     border-radius: 15px;
     width: 90%;
     max-width: 800px;
}

.contact-info h2 {
     font-size: 3em;
     color: #000000 !important;
     margin-bottom: 20px;
}

.contact-info p {
     text-align: center;
     font-size: 1.4em;
     color: #000000 !important;
     margin: 20px 0;
}

/* ------------------------------------------------------------------------------- */
















/* ------------------------------------------------------------------------------- */
/* Footer Styles */
footer {
     background: linear-gradient(to right, #333, #4a4a4a);
     color: #fff;
     text-align: center;
     padding: 20px;
     box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.2);
     border-top: 3px solid #555;
     width: 100%;
     box-sizing: border-box;
}

footer p {
     margin: 0;
     font-size: 1.2em;
}

/* Responsive Styles */
@media (max-width: 768px) {

     .services-grid,
     .packages-grid {
          flex-direction: column;
          align-items: center;
     }

     .service-item,
     .package-item {
          width: 100%;
          max-width: none;
     }
}

@media (max-width: 480px) {
     header h1 {
          font-size: 2.5em;
     }

     header p {
          font-size: 1.2em;
     }

     .about-us h2,
     .history h2,
     .services h2,
     .packages h2,
     .location-info h2,
     .map h2,
     .testimonials h2,
     .gallery h2,
     .contact-info h2 {
          font-size: 2em;
     }

     .about-us p,
     .history p,
     .services p,
     .packages p,
     .location-info li,
     .map p,
     .contact-info p {
          font-size: 1em;
     }
}

/* Animations */
@keyframes fadeIn {
     from {
          opacity: 0;
     }

     to {
          opacity: 1;
     }
}

@keyframes slideIn {
     from {
          transform: translateY(-20px);
          opacity: 0;
     }

     to {
          transform: translateY(0);
          opacity: 1;
     }
}

@keyframes pulse {
     0% {
          transform: scale(1);
     }

     50% {
          transform: scale(1.05);
     }

     100% {
          transform: scale(1);
     }
}

.animated-button {
     display: inline-block;
     padding: 10px 20px;
     font-size: 1.2em;
     color: #fff;
     background: #007bff;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     transition: background 0.3s, transform 0.3s;
     text-decoration: none;
}

.animated-button:hover {
     background: #0056b3;
     transform: scale(1.1);
}

.animated-button:active {
     transform: scale(0.9);
}

/* ------------------------------------------------------------------------------- */






























































/* ------------------------------------------------------------------------------- */
/* Container for layout */
.container-tag {
     display: flex;
     justify-content: space-between;
     padding: 20px;
     max-width: 1500px;
     margin: 0 auto;
     background-color: #fff;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     border-radius: 10px;
     flex-wrap: wrap;
     /* Allows elements to stack on smaller screens */
}

/* Left section styling for the image */
.left-section {
     width: 60%;
     padding: 10px;
}

.profile-image {
     width: 100%;
     height: 600px;
     object-fit: cover;
     border: 2px solid black;
     border-radius: 10px;
}

/* Right section styling for contact information */
.contact-info {
     width: 40%;
     padding: 20px;
     border: 2px solid rgb(255, 255, 255);
     background: linear-gradient(to right, #c22003ad, #1c2863);
     border-radius: 10px;
}

.contact-info h2 {
     font-family: "Rowdies", sans-serif;
     margin-bottom: 20px;
     text-align: center;
     font-size: 45px;
     color: #fff200;
     position: relative;
}

.contact-info h2::after {
     content: "";
     position: absolute;
     width: 50%;
     height: 5px;
     background-color: rgb(255, 255, 255);
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 2px;
}

.contact-info p {
     color: #f9f9f9;
     margin-bottom: 15px;
     font-size: 18px;
}
.contact-info li {
     list-style-type: none;
     
} 

.map-embed {
     margin-bottom: 15px;
     text-align: center;
}

iframe {
     width: 100%;
     height: 250px;
     border-radius: 10px;
     border: 0;
}

/* Social media icons */
.social-media {
     display: flex;
     justify-content: space-around;
     margin-top: 20px;
}

.social-icon {
     font-size: 30px;
     color: #ffffff;
     transition: color 0.3s ease;
}

.social-icon:hover {
     color: #007bff;
}

/* Footer buttons for navigation */
.footer-buttons {
     display: flex;
     justify-content: center;
     padding: 20px;
}

.footer-btn {
     width: 50px;
     height: 50px;
     border: 2px solid black;
     margin: 0 10px;
     background-color: white;
     cursor: pointer;
     transition: background-color 0.3s ease;
     border-radius: 50%;
}

.footer-btn:hover {
     background-color: black;
     color: white;
}

/* Responsive Design */

/* For tablets and small laptops */
@media (max-width: 1000px) {
     .container-tag {
          flex-direction: column;
          align-items: center;
     }

     .left-section,
     .contact-info {
          width: 100%;
          margin-bottom: 20px;
     }

     .profile-image {
          height: 350px;
     }
}

/* For tablets in portrait mode */
@media (max-width: 768px) {
     .contact-info h2 {
          font-size: 35px;
     }

     .profile-image {
          height: 300px;
     }

     iframe {
          height: 200px;
     }

     .contact-info p {
          font-size: 16px;
     }

     .footer-btn {
          width: 40px;
          height: 40px;
     }
}

/* For small mobile devices */
@media (max-width: 480px) {
     .container-tag {
          padding: 10px;
     }

     .contact-info h2 {
          font-size: 25px;
     }

     .social-icon {
          font-size: 24px;
     }

     .profile-image {
          height: 250px;
     }

     iframe {
          height: 150px;
     }

     .footer-btn {
          width: 35px;
          height: 35px;
     }

     .contact-info p {
          font-size: 14px;
     }
}

/* ------------------------------------------------------------------------------- */


































/* -------------------------------------------------------------------------------------------------- */
/* footer */
.footer {
     background-color: #1a1a1a !important;
}

.container-fluid-custom {
     max-width: 1170px;
     margin: auto;
     padding: 0 15px;
}

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

.footer {
     padding: 70px 0;
     color: #ffffff;
}

.footer-col {
     
     flex: 1;
     padding: 0 15px;
     min-width: 200px;
}

.footer-col h4 {
     text-align: left;
     font-size: 23px;
     color: #ffffff;
     text-transform: uppercase;
     margin-bottom: 25px;
     font-weight: 600;
     position: relative;
}

.footer-col h4::before {
     content: '';
     position: absolute;
     left: 0;
     bottom: -10px;
     background-color: #ffef09;
     height: 2px;
     box-sizing: border-box;
     width: 50px;
}

.footer-col ul {
     list-style: none;
     padding: 0;
     margin: 0;
}

.footer-col ul li {
     margin-bottom: 10px;
}

.footer-col ul li a {
     text-align: left;
     font-weight: bold;
     font-size: 16px;
     text-transform: capitalize;
     color: #ffffff;
     text-decoration: none;
     font-weight: bold;
     display: block;
     transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col ul li a:hover {
     color: #ffffff;
     padding-left: 8px;
}

.footer-col .social-links {
     margin-top: 20px;
}
.bx{
     margin-top: 10px;
     font-size: 30px;
}
.footer-col .social-links a {
     display: inline-block;
     height: 51px;
     width: 51px;
     background-color: rgba(255, 255, 255, 0.2);
     margin: 0 10px 10px 0;
     text-align: center;
     line-height: 40px;
     border-radius: 50%;
     color: #ffffff;
     transition: background-color 0.5s ease, color 0.5s ease;
}

.footer-col .social-links a:hover {
     color: #24262b;
     background-color: #ffffff;
}
@media(max-width: 767px) {
     .footer-col {
          width: 50%;
          margin-bottom: 30px;
     }
}

@media(max-width: 574px) {
     .footer-col {
          width: 100%;
     }
}

/* -------------------------------------------------------------------------------------------------- */
/* footer end */