
:root {
  /* CSS Variables */
  --primary-color: #444;
  --background-color: #ffffff;
  --font-family: 'Inter', sans-serif;
  --container-width-desktop: 90%;
  --container-max-width: 1200px;
  --font-size-base: 16px; /* Base font size */
  --font-size-md: 18px; /* Medium screens */
  --font-size-lg: 20px; /* Large screens */
}

body {
  background: var(--background-color);
  color: var(--primary-color);
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: var(--font-size-base);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 95%;
  max-width: var(--container-max-width);
  margin: auto;
}

/* Responsive Typography */
h1, h2, h3, h4, h5, h6, p {
  margin: 0 0 20px 0;
  padding: 0;
}

/* Consolidated Media Queries */
@media (min-width: 768px) {
  body {
      font-size: var(--font-size-md);
  }

  .container {
      width: var(--container-width-desktop);
  }
}

@media (min-width: 1024px) {
  body {
      font-size: var(--font-size-lg);
  }
}



.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #830101;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #810900;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  padding: 0;
  height: 40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #ff0000;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #444;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #ff0000;
}

#topbar .social-links a {
  color: #000000;
  padding: 0 15px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a:hover {
  color: #ff0000;
}

#topbar .social-links a:first-child {
  border-left: 0;
}


#header {
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  background: #ffffff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}


#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 80px; 
}

@media (max-width: 768px) {
  #header {
    height: 60px;
  }
  #header #logo img {
    max-height: 40px; 
  }
}


.scrolled-offset {
  margin-top: 70px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ff0b0b;
}

.mobile-nav-toggle {
  color: #ff1e00;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fd0000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}


#hero {
  width: 100%;
  height: 60vh;
  position: relative;
  background-size: cover;
  padding: 0;
}

#hero .hero-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero .hero-content h2 {
  color: #000000;
  margin-bottom: 30px;
  font-size: 55px;
  font-weight: 700;
}

#hero .hero-content h2 span {
  color: #ad0202;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #hero .hero-content h2 {
    font-size: 34px;
  }
}

#hero .hero-content .btn-get-started,
#hero .hero-content .btn-projects {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
}

#hero .hero-content .btn-projects {
  background: none;
  color: #eb0a0a;
  border: 2px solid #e90707;
}

#hero .hero-content .btn-projects:hover {
  background: none;
  color: #ffffff;
  background: #f00303;
  border: 2px solid #e90707;
}

#hero .hero-slider {
  z-index: 8;
  height: 60vh;
}

#hero .hero-slider::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}

#hero .hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
}


section {
  padding: 40px 0;
  overflow: hidden;
}


.section-header {
  margin-bottom: 30px;
  text-align: center;
}

.section-header h2 {
  font-size: 32px;
  color: #000000;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px; /* Provides space for the line */
  display: inline-block; /* Makes the element's width fit its content */
  margin: 0 auto; /* Center the heading */
}

.section-header h2::before {
  content: "";
  position: absolute;
  width: 110px; /* Width of the line */
  height: 3px;
  background: #8f0101;
  bottom: 10%;
  left: 50%; /* Start the line from the middle */
  transform: translateX(-50%); 
}

.section-header p {
  padding: 0;
  margin: 0;
}


.breadcrumbs {
  padding: 20px 0;
  background-color: #f0f0f0;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}


.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  margin: 5% auto; /* Centered with more appropriate top margin */
  padding: 20px;
  border: none; /* Removed border for a cleaner look */
  width: 90%; /* Flexible width */
  max-width: 1000px; /* Maximum width so it doesn't look too wide */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); /* More pronounced shadow for depth */
  border-radius: 10px; /* More rounded corners for a softer look */
  transition: transform 0.3s ease; /* Smooth transition for opening/closing */
}

@media (max-width: 768px) {
  .modal-content {
    margin-top: 10%;
    width: 85%; /* Slightly narrower on small devices */
  }
}

@media (max-width: 480px) {
  .modal-content {
    margin-top: 15%;
    width: 85%; /* Use more of the screen width */
    padding: 15px; /* Reduce padding to save space */
  }
}

#model-viewer{
  cursor: auto;
}
/* General Styles for model-viewer */
#model-viewer .model-container {
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  justify-content: center;
  align-items: center;
}

#model-viewer .model-item {
  flex: 1 1 22%; /* Start with four items in a row and adjust as necessary */
  margin: 20px; /* Margin for spacing */
  max-width: 350px; /* Maximum width for each model */
}

#model-viewer model-viewer {
  width: 100%; /* Relative to .model-item */
  height: 400px; /* Fixed height for consistency */
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#model-viewer model-viewer:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

#model-viewer .model-title {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
}

.model-item {
  flex-direction: column; /* Stack the model-viewer and the title */
  align-items: center; /* Center-align the title under the model */
  margin: 0 20px; /* Add space around each item */
}

.model-title  {
  margin-top: 10px; /* Space between the model-viewer and the title */
  font-family: 'Inter', sans-serif;
  color: #000000; /* Title color */
  text-align: center; /* Center-align the text */
  font-weight: bold; /* Make the title bold */
}

/* Medium screens (tablets in landscape mode) */
@media (max-width: 1024px) {
  #model-viewer .model-item {
    flex: 1 1 45%; /* Two models per row */
  }
}

/* Small screens (tablets in portrait mode, large phones) */
@media (max-width: 768px) {
  #model-viewer .model-item {
    flex: 1 1 100%; /* Stack models vertically */
  }
}

/* Modal and other styles unchanged... */


/* The Close Button */
.close {
  color: #0f0f0f;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: rgb(255, 0, 0);
  text-decoration: none;
  cursor: pointer;
}



#certifications {
  background: #f8f9fa; 
  padding: 60px 0;
}

#certifications .section-header {
  margin-bottom: 40px;
}



#certifications .section-header p {
  margin-top: 20px;
  color: #000000; /* Subtext color */
  font-size: 18px;
  max-width: 600px;
  margin: auto;
}

.certification-item {
  background: #ffffff; /* Background color for certification items */
  border: 1px solid #e7e7e7; /* Border for items */
  border-radius: 10px; /* Rounded corners for modern look */
  padding: 20px;
  margin-bottom: 30px; /* Spacing between items */
  text-align: center; /* Center align the content */
  transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
}

.certification-item:hover {
  transform: translateY(-5px); /* Slight lift effect on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow for lifted items */
}

.certification-item img {
  max-width: 300px; /* Limit size of certification logos */
  margin-bottom: 30px; /* Space between image and text */
}

.certification-item h4 {
  color: #333333; /* Dark color for item heading */
  margin-bottom: 10px; /* Space below the heading */
}

.certification-item p {
  color: #555555; /* Grey color for description text */
  font-size: 16px; /* Standard font size */
  line-height: 1.7; /* Line height for readability */
}

/* Adjustments for responsiveness */
@media (max-width: 768px) {
  #certifications .certification-item {
      margin-bottom: 20px;
  }
}


#services {
  padding: 40px 0;
}

#services .box {
  padding: 40px;
  box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  background: #fff;
  transition: 0.4s;
  height: 100%;
}

#services .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#services .box .icon {
  float: left;
}

#services .box .icon i {
  color: #444;
  font-size: 64px;
  transition: 0.5s;
  line-height: 0;
  margin-top: 34px;
}

#services .box .icon i:before {
  background: #0c2e8a;
  background: linear-gradient(45deg, #000000 0%, #ff0303 100%);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#services .box h4 {
  margin-left: 100px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

#services .box h4 a {
  color: #444;
}

#services .box p {
  font-size: 16px;
  margin-left: 100px;
  margin-bottom: 0;
  line-height: 24px;
}

@media (max-width: 767px) {
  #services .box .box {
    margin-bottom: 20px;
  }

  #services .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  #services .box h4,
  #services .box p {
    margin-left: 0;
    text-align: center;
  }
}

#clients {
  padding: 30px 0;
  background-color: #ffffff;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff0000;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff0000;
}

#portfolio {
  background: #fff;
  padding: 30px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px 12px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #f7f7f7;
  border-radius: 4px;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #bb0202;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

#portfolio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -50px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: #bb0202;
  padding: 15px 20px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

#portfolio .portfolio-item .portfolio-info p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info .preview-link,
#portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: rgba(255, 255, 255, 0.6);
  transition: ease-in-out 0.3s;
}

#portfolio .portfolio-item .portfolio-info .preview-link:hover,
#portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-info .details-link {
  right: 15px;
}

#portfolio .portfolio-item:hover img {
  top: -30px;
}

#portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
  background-color: #f0f0f0;
}

.price{
  font-size: 32px;
  color: #3b9201;
  border: 2px solid #ff0000;
  padding: 30px 30px;
  margin: 20px;
  box-sizing: border-box;
  background-color: #fff;

}
.priceS{
  color: #424242;
  font-size: 24px;
  font-family: 'Inter', sans-serif;
}

.bordered-text {
  border: 2px solid #ff0000;
  display: inline-block;
  padding: 30px 30px;
  margin: 20px;
  box-sizing: border-box;
  background-color: #fff;
}
.bordered-text span{
  color: #ff0000;
  text-decoration: underline;
}

.header-contents h1,
.header-contents p {
  margin: 0;
  text-align: center;
  color: #000;
}

.portfolio-details span{
  color: #ff0000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.portfolio-details .portfolio-details-slider img {
  width: 700px;
  background-color: #f0f0f0;

}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff0202;
  
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff0000;
}

.portfolio-details .portfolio-info {
  padding: 40px;
  box-shadow: 0px 0 30px rgba(12, 46, 138, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 40px;
  color: #000;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #000000;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 22px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}





#call-to-action {
  background: #a10303;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #ff0000;
  border: 3px solid #ffffff;
}


#contact {
  padding: 30px 0;
  background-color: #f8f9fa;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #50d8af;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #ff0606;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .php-email-form input::focus,
#contact .php-email-form textarea::focus {
  background-color: #50d8af;
}

#contact .php-email-form button[type=submit] {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  border: 1;
  border-color: #ff0000;
  border-radius: 3px;
  padding: 10px 30px;
  color: #f70505;
  transition: 0.4s;
  cursor: pointer;
}

#contact .php-email-form button[type=submit]:hover {
  background: none;
  color: #ffffff;
  background: #f00303;
  border: 2px solid #e90707;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#colorlib-footer {
  color: #FFFFFF;
  background-color: #ffffff;
  padding: 40px 0;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#colorlib-footer .container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-branding {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo {
  margin-right: 20px; /* Adjust the margin as needed */
  height: auto; /* Adjust the size as needed */
  width: 150px; /* Adjust the size as needed */
}

.footer-social {
  display: flex;
  align-items: center;
}

.footer-social a {
  color: #000000;
  font-size: 24px;
  margin: 0 10px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #fd0101;
}

.footer-menu {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-column {
  margin-right: 30px;
}

.footer-column h5 {
  margin-bottom: 10px;
}

.footer-column a {
  margin-bottom: 8px;
}

.footer-legal {
  margin-bottom: 20px;
}

.footer-legal a {
  color: #000000;
  text-decoration: none;
  margin: 0 5px;
  font-size: 14px;
}

.footer-legal a:hover {
  color: #fd0101;
  text-decoration: underline;
}

.footer-copy {
  color: #000000;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-branding, .footer-menu {
    flex-direction: column;
    align-items: center;
  }

  .footer-branding {
    margin-bottom: 20px;
  }

  .footer-column {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
