
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 22px;
    height: 22px;
}

.btn-sm-square {
    width: 24px;
    height: 24px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-green);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }
}
.header-static {
    position: relative;
    height: 700px; /* Set height for the static image */
}

.header-static img {
    object-fit: cover;
    height: 100%; /* Ensure image covers the entire height */
    width: 100%; /* Ensure image covers the entire width */
}

.header-static .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px; /* Top padding for the caption */
    background: transparent; /* Semi-transparent background */
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-static .carousel-caption {
        padding-top: 45px; /* Adjust padding for smaller screens */
    }
}



/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
}

.service .service-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

/*** Service End ***/


/*** Features Start ***/
.feature .feature-item {
    text-align: center;
    border-radius: 10px;
    background: var(--bs-light);
    border: 1px solid transparent;
    transition: 0.5s;
}

.feature .feature-item:hover {
    border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
    background: var(--bs-white);
    border-radius: 10px;
    display: inline-block;
}
/*** Features End ***/

/*** Offer Start ***/
.offer-section .nav a.accordion-link {
    width: 100%;
    border-radius: 10px;
    display: flex;
    background: var(--bs-white);
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

.offer-section .nav a.accordion-link h5 {
    transition: 0.5s;
}

.offer-section .nav a.accordion-link.active h5 {
    color: var(--bs-white);
}
/*** Offer End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-secondary);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
}
/*** FAQs End ***/



/*-----------------------------------*\
  #Subsciption
\*-----------------------------------*/

.contact-form-section {
  padding: 2rem;
  background-color: #f9f9f9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title-classic-text {
  font-size: 1rem;
    background:lightgray;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-group {
  flex: 1;
}

.half-width {
  flex: 1 1 calc(50% - 1rem);
}

.input-field {
  width: 100%;
  padding: 0.50rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.input-field:focus {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Equipment Type Section Styles */
.equipment-type {
  margin-top: 1.5rem;
}

.equipment-type-title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: calc(50% - 0.5rem);
}

.checkbox-label {
  font-size: 0.875rem;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f7f7f7;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  flex: 1;
}

.checkbox-label:hover {
  background-color: #e0e0e0;
  border-color: #ccc;
}

.checkbox-label input {
  margin-right: 0.5rem;
}

.quantity-field {
  width: 65px;
  height: 45px;
  padding: 2px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  position:relative;
  align-items: flex-start;
  margin-block-start: 1px ;
}

/* Submit Button */
.submit-btn {
  background-color: var(--bs-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: green;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .checkbox-item {
    width: calc(100% - 1rem);
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .half-width {
    flex: 1;
    width: 100%;
  }

  .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkbox-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.25rem;
  }

  .title-classic-text {
    font-size: 0.875rem;
  }

  .checkbox-label {
    font-size: 0.75rem;
  }

  .quantity-field {
    width: 45px;
  }

  .submit-btn {
    width: 100%;
    text-align: center;
  }
}
.input-error {
  border-color: red;
  box-shadow: 0 0 5px red;
}
 /* Modal styles */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background-color: #fff;
            padding: 20px;
            max-width: 1200px;
            max-height: 100%;
            overflow-y: auto;
            border-radius: 8px;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #f44336;
            color: #fff;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 5px;
        }

        .modal-close:hover {
            background-color: #d32f2f;
        }
/* Terms and Conditions Section */
.terms-conditions {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    gap: 10px;
}

/* Checkbox Styling */
input[type="checkbox"][name="agree_to_terms"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 3px;
}

/* Text Next to Checkbox with Relevant Name */
.terms-text[name="terms_text"] {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* "Terms and Conditions" Button */
button#showPoliciesButton[name="show_policies_button"] {
    color: #007BFF;
    border: none;
    padding: 0;
    font-size: 14px;
    cursor: pointer;
    background: none;
    text-decoration: underline;
    margin-left: 5px;
}

/* Button Hover State */
button#showPoliciesButton[name="show_policies_button"]:hover {
    color: #0056b3;
}

/* Submit Button */
button.submit-btn[name="submit_btn"] {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* Submit Button Hover State */
button.submit-btn[name="submit_btn"]:hover {
    background-color: #0056b3;
}

/* Checkbox Label Styling with Relevant Name */
label.checkbox-label[name="checkbox_label"] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/*-----------------------------------*\
  End Subsciption
\*-----------------------------------*/

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/
/* General Service Section */

.service .section-title, 
.service .section-text {
  margin-bottom: 20px;
  font-size: 1.25rem; /* Adjusted for smaller size */
}

/* Service Detail Section */
.service-detail {
  padding: 20px;
  background-color: #f9f9f9;
  box-sizing: border-box;
}

.service-detail-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-detail-content {
  padding: 20px;
}

.service-detail-title {
  font-size: 1.75rem; /* Slightly smaller font */
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.detail-text h1, 
.detail-text h2, 
.detail-text h3 {
  font-family: 'Helvetica Neue', sans-serif;
}

.detail-text h1 {
  font-size: 1.375rem;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}

.detail-text p, 
.detail-text li {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Service Card Styles */
.service-card {
  background-color: #f0f8ff; /* AliceBlue */
  padding: 10px;
  border: 4px solid #fff; /* Reduced border for cleaner look */
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
  position: relative;
  height: 100%;
  max-width: 600px;
  margin: 30px auto;
  overflow: hidden;
  word-wrap: break-word;
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow on hover */
  border-color: #f0f8ff; /* AliceBlue */
}

.service-card .card-icon {
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.service-card .card-title {
  color: #000;
  font-size: 1.125rem; /* Slightly smaller font size */
  margin-bottom: 10px;
}

.service-card .card-text {
  font-size: 1rem; /* Smaller font size */
  line-height: 1.5; /* Improved readability */
  margin: 0;
}

.service-card .btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 15px;
  color: #000;
  font-size: 0.875rem; /* Smaller size */
  transition: color 0.3s ease;
}

.service-card .btn-link:hover {
  color: #007bff; /* Assuming primary color as blue */
}

/* Subscribe Button */
.btn-subscribe {
  display: grid;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: var(--bs-primary);
  border-radius: 8px;
  text-align: center;
  width: 150px;
  margin: 20px auto;
  transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
  background-color: green;
  color: white;
}

/* Optimized Image Sizes */
.amazon-dispatch-img,
.power-only-img,
.dryvan-img,
.reefer-dispatch-img,
.box-dispatch-img,
.flatbed-dispatch-img {
  width: 60%; /* Width of container for these images */
  height: auto; /* Maintain aspect ratio */
  margin: 20px auto; /* Centered and spaced */
  display: block;
}

.tracking-compliance-img {
  width: 300px; /* Fixed width */
  height: auto; /* Maintain aspect ratio */
  float: right; /* Float right */
  margin-right: 30px;
  margin-top: 45px;
}

.graphic-solutions-img {
  width: 100%; /* Full width */
  height: auto; /* Maintain aspect ratio */
  margin: 30px auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-detail-content {
    flex-direction: column;
  }

  .btn-subscribe {
    font-size: 0.875rem;
    padding: 8px 16px;
  }

  .tracking-compliance-img {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .btn-subscribe {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .amazon-dispatch-img,
  .power-only-img,
  .dryvan-img,
  .reefer-dispatch-img,
  .box-dispatch-img,
  .flatbed-dispatch-img,
  .graphic-solutions-img {
    width: 100%; /* Full width on small screens */
  }
}

/*-----------------------------------*\
  #Services END
\*-----------------------------------*/


/*-----------------------------------*\
  #Contact us
\*-----------------------------------*/


/* General Styles */
.contact-container2 {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Background color for the whole page */
    margin-block-end: 20px;
    padding-block-start: 35px;
}

/* Container for the two-column layout */
.contact-container2 {
    display: flex;
    flex-wrap: wrap;
}

/* Styles for the contact form */
.contact-form2 {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
    background-color: #ffffff; /* Background color of the contact form */
  
}

.contact-form2 h1 {
    margin-top: 0;
    color: #333; /* Text color for the title */
    text-align: center;
}

.contact-form2 label {
    display: block;
    margin-top: 10px;
    color: #555; /* Text color for labels */
}

.contact-form2 input, .contact-form2 textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc; /* Border color for input fields */
    border-radius: 4px; /* Rounded corners for input fields */
}

.contact-form2 button {
    margin-top: 10px;
    padding: 10px 20px;
    border: none;
    background-color: var(--bs-primary); /* Button background color */
    color: #fff; /* Button text color */
    cursor: pointer;
    border-radius: 4px; /* Rounded corners for the button */
}

.contact-form2 button:hover {
    background-color: green; /* Button hover color */
}

/* Styles for the map container */
.map-container {
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    background-color: #ffffff; /* Background color of the map container */
   
   
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-form2, .map-container {
        width: 100%;
        padding: 10px;
    }
}

/* Style for the select element */
.contact-form2 select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    background-color: #ffffff;
    appearance: none; /* Removes default styling */
    cursor: pointer;
}

/* Custom arrow for the select dropdown */
.contact-form2 select::-ms-expand {
    display: none; /* Removes default dropdown arrow in Internet Explorer */
}

.contact-form2 select option {
    padding: 10px;
    background-color: #ffffff;
}

/* Optional: Custom styling for the container to align t
/* Optional: Adding a custom arrow icon (if needed) */
.contact-form2 select::after {
    content: '▼'; /* Unicode character for down arrow */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #333;
    pointer-events: none;
    font-size: 12px;
}

/*-----------------------------------*\
    #Contact us END
\*-----------------------------------*/
/*** Testimonial Start ***/
.testimonial .testimonial-item {
    position: relative;
    margin-bottom: 30px;
    padding: 0 25px 25px 25px;
}

.testimonial .testimonial-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 50px);
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .testimonial-item .testimonial-img {
    display: flex;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-img img {
    width: 100px; 
    height: 100px;
    border-radius: 100px;
    border: 5px solid var(--bs-light);
    border-style: double;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-text {
    padding: 25px 0;
    text-align: center;
}

.testimonial .testimonial-item .testimonial-title {
    display: flex;
    justify-content: space-between;
}

.testimonial .testimonial-item  .testimonial-quote-left {
    position: absolute;
    width: 60px; 
    height: 60px;
    top: 20px;
    left: 25px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item  .testimonial-quote-right {
    position: absolute;
    width: 60px; 
    height: 60px;
    bottom: -30px;
    right: 25px;
    margin-top: -5px;
    border-radius: 60px;
    color: var(--bs-primary);
    background: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-secondary);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
}
/*** copyright end ***/


