/**
* Template Name: Sava45 Gastro bar
*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Figtree", sans-serif;
  --nav-font: "Figtree", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #999898; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #414042; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #388da8; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff; /* The default color of the main navmenu links */
  --nav-hover-color: #91c4d6; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #313336; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #77b6ca; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f1f0;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 400;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.yellow-btn {
  color: #ffffff;
  background: #f1a948;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
}

.yellow-btn:hover {
  background-color: #d88c1b;
  color: #ffffff;
}

p b {
  color: #414042;
}

/* scroll bar */
::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: #388da8;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1a2d22;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1250px;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: transparent;
  transition: all 0.5s;
  z-index: 997;
}

.header .centered-logo {
  flex-grow: 1;
  text-align: center;
  margin-left: 165px;
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 100px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1399px) {
  .header .centered-logo {
    margin-left: 105px;
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  /*.header .navmenu {
        order: 3;
    }*/
}

@media (max-width: 1199px) {
  .header .centered-logo {
    margin-left: auto;
  }
  .header .right-navmenu {
    display: none;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus,
  .right-navmenu ul li,
  .right-navmenu a,
  .right-navmenu a:focus,
  .right-navmenu a:hover {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus,
  .right-navmenu a:focus,
  .right-navmenu a:hover,
  .right-navmenu a:target {
    color: var(--nav-hover-color);
  }

  .right-navmenu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .right-navmenu a,
  .right-navmenu a:focus,
  .right-navmenu a:hover,
  .right-navmenu a:target {
    padding: 18px 0px 18px 5px;
  }

  .right-navmenu ul li {
    padding: 5px 0px;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 15px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
    color: #ffffff;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgb(33 37 41);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    background-color: transparent;
    box-shadow: none;
    color: #ffffff;
    text-align: center;
  }

  .header .yellow-btn {
    margin-top: 0px;
    margin-right: 20px;
  }

  li.d-xl-none {
    padding: 15px;
    text-align: center;
    margin-top: 25px !important;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 90px 0;
  scroll-margin-top: 0px;
  overflow: clip;
}

.section span,
.footer span {
  color: #91c4d6;
  font-style: italic;
}

.section img {
  border-radius: 20px;
}

.section h2 {
  font-weight: 700;
  font-style: italic;
  line-height: normal;
  margin-bottom: 15px;
  font-size: clamp(36px, 4vw, 40px);
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 0px;
    padding-top: 40px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-image: url("../img/Sava45-home-baner.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 800px;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin-top: -163px;
}

.hero .container {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero h1 {
  font-weight: 700;
  color: #ffffff;
  line-height: normal;
  margin: 0;
  margin-bottom: 20px;
  font-size: clamp(44px, 8vw, 64px);
}

.hero h2 {
  color: #ffffff;
}

@media (max-width: 767px) {
  .hero {
    width: 100%;
    background-image: url(../img/Sava45-home-baner-mob.webp);
    background-position: center bottom;
    height: calc(100vh + 0px);
    margin-top: -100px;
  }
  .hero h2 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 120px;
}

.about-images {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 767px) {
  .about {
    padding-bottom: 55px;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Gastro menu Section
--------------------------------------------------------------*/
.gastro-menu {
  position: relative;
  padding-top: 35px;
  padding-bottom: 0px;
  background-color: #f2f1f0;
  z-index: 2;
  overflow: visible;
}

.gastro-menu-bg-img {
  position: absolute;
  right: 0px;
  bottom: -35%;
}

.content-setup {
  align-items: center;
  justify-content: flex-end;
}

.glovo-wrap {
  margin-top: 10px;
  padding: 0px 25px 3px;
  border-radius: 32px;
  position: relative;
  display: inline-block;
  border: 1px solid #f1a948;
}

.glovo-wrap img {
  width: 120px;
  max-width: 85px;
}

.glovo-wrap:hover {
  background: #d4d2d23d;
}

@media (min-width: 768px) {
  .gastro-menu .content {
    max-width: 500px;
    z-index: 2;
  }

  .mb-minus-1 {
    position: relative;
    bottom: -85px;
  }

  .mb-minus-2 {
    position: relative;
    bottom: -45px;
    margin-top: -10px;
  }
}

@media (max-width: 992px) {
  .gastro-menu .content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .gastro-menu-img-wrap {
    display: flex;
    justify-content: space-around;
  }

  .gastro-menu-bg-img {
    bottom: -20%;
  }
}

@media (max-width: 767px) {
  .gastro-menu-bg-img {
    display: none;
  }

  .gastro-menu {
    text-align: center;
    padding-top: 35px;
  }

  .gastro-menu .yellow-btn {
    font-size: 14px;
    padding: 10px 25px;
  }

  .mb-minus-1 {
    position: relative;
    bottom: -60px;
  }

  .mb-minus-2 {
    position: relative;
    bottom: -45px;
    margin-top: -6px;
  }

  .gastro-menu .content {
    margin-bottom: 0px;
  }

  .buttons-call {
    justify-content: space-around;
  }

  button#openModal {
    margin-left: 0;
    font-size: 14px;
    padding: 10px 25px;
  }

  .glovo-wrap {
    margin-top: 18px;
    padding: 0px 25px 0px;
    border-radius: 32px;
    position: relative;
    display: block;
  }
  .glovo-wrap img {
    max-width: 75px;
  }
}

/*--------------------------------------------------------------
# Gastro menu POPUP
--------------------------------------------------------------*/

.open-btn {
  background-color: #91c4d6;
  color: white;
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 10px;
  margin-left: 10px;
  border: 0px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.open-btn:hover {
  background-color: #0d6c8d;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  overflow-y: auto;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%; /* Ili druga širina, npr. 50% */
  max-width: 600px;
  height: 80vh; /* Visina modala */
  background-color: #fff;
  border-radius: 8px;
  padding: 0px 20px 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}
.modal-content h2 {
  text-align: center;
  color: #233e2d;
  text-transform: uppercase;
}
.menu-category {
  margin-top: 20px;
}
.menu-category h3 {
  color: #233e2d;
  border-bottom: 2px solid #233e2d;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}
.menu-category ul {
  list-style: none;
  padding: 0;
}
.menu-category li {
  margin: 10px 0;
}
.menu-category li strong {
  display: block;
  font-size: 16px;
}
.menu-category li .ingredients {
  font-size: 14px;
  color: #555;
  margin-left: 10px;
  font-style: italic;
}
.close-wrap {
  position: sticky;
  top: 10px;
  right: 15px;
  z-index: 1010;
  text-align: right;
}

.modal .modal-logo {
  height: 75px;
  margin-top: -12px;
}

/* Close Button */
.close-btn {
  cursor: pointer;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

.gallery {
  position: relative;
  padding-top: 220px;
  margin-bottom: 100px;
}

.gallery img {
  width: 100%;
}

.gallery-info {
  max-width: 770px;
  margin: 0 auto 50px;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

#lightbox.active {
  opacity: 1;
  pointer-events: all;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  animation: fadeIn 0.3s ease-in-out;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(255 255 255 / 0%);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #388da8;
}

.lightbox-prev svg,
.lightbox-next svg {
  display: block;
  width: 35px;
  height: auto;
  margin: 0;
  padding: 0;
  fill: #ffffff;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.lightbox-close svg {
  fill: #ffffff;
  width: 20px;
  height: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Swiper slider*/

.swiper-slide-item img {
  width: 405px;
  height: 205px;
  object-fit: cover;
}

.hide-on-desktop {
  display: none;
}
.hide-on-mobile {
  display: block;
}

/* Responsive pravila */
@media (max-width: 767px) {
  .gallery {
    padding-top: 110px;
    margin-bottom: 80px;
  }

  .hide-on-desktop {
    display: block;
  }
  .hide-on-mobile {
    display: none;
  }

  /*.gallery-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }*/

  .buttons-arrow-wrap {
    display: flex;
    justify-content: center;
    margin: 15px;
  }

  .arrow-positions {
    margin: 0 8px;
    background-color: #ffffff;
    border: 2px solid #cccccc;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Blaga senka */
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  /* Hover efekti za dugmad */
  .arrow-positions:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
  }

  /* Strelice unutar dugmadi */
  .arrow-positions .carousel-control-prev-icon,
  .arrow-positions .carousel-control-next-icon {
    width: 16px;
    height: 16px;
    background-size: 100%;
    filter: invert(0.5);
  }

  .buttons-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    margin: 0 8px;
    background-color: #ffffff;
    border: 2px solid #cccccc;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    justify-content: center;
    left: auto;
    right: auto;
    position: relative;
  }

  .swiper-button-next:after {
    content: "next";
    font-size: 14px;
    height: 16px;
    color: #766d6d;
  }

  .swiper-button-prev:after {
    content: "prev";
    font-size: 14px;
    height: 16px;
    color: #766d6d;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #f2f1f0;
  background-image: url("../img/Sava45_Logo_footer_bg.svg");
  background-position: right bottom;
  background-repeat: no-repeat;
  position: relative;
}

.footer .footer-top {
  padding-top: 85px;
}
.footer .footer-about {
  display: flex;
  gap: 1.5rem;
  color: #414042;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .logo img {
  width: 371px;
  height: auto;
}

.footer .footer-links {
  margin-bottom: 0px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

.footer .footer-links ul li {
  padding: 2px 0;
  color: #414042;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #414042;
  display: inline-block;
  line-height: 0.7;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer-links.contact-info-list svg {
  margin-right: 10px;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}
.footer-links.contact-info-list li {
  padding: 5px 0px;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #414042;
}

.contact-image {
  margin-top: -100px;
}

@media (max-width: 768px) {
  .footer .footer-top {
    padding-top: 35px;
  }

  .footer .footer-about {
    display: flex;
    gap: 1.5rem;
    color: #414042;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer .logo img {
    width: 110px;
  }

  .footer .footer-links ul.for-mobile {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }

  ul.for-mobile li a {
    text-decoration: underline;
  }

  .contact-info-list ul {
    text-align: center;
  }

  .footer .copyright p {
    font-size: 13px;
  }
}
