
/* ==================== Mobile Menu CSS Variables ==================== */
:root {
  --m-bar-h: 85px;
  --m-primary: #1a1a1a;
  --m-text-on-primary: #ffffff;
  --m-border-on-primary: rgba(255, 255, 255, 0.2);
  --m-surface: #ffffff;
  --m-text: #1a1a1a;
  --m-text-dim: rgba(0, 0, 0, 0.55);
  --m-border: rgba(0, 0, 0, 0.1);
  --m-pad-x: 20px;
  --m-drawer-w: min(320px, 85vw);
  --m-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  --m-acc-speed: 300ms;
}

/* ==================== Header Navigation Styles ==================== */

/* Header Container */
.header-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--header-height, 80px);
}

.header-field.scrolling-down,
.header-field.scrolling-up {
  background: var(--primary-color, #1a1a1a);
}

@media (max-width: 1280px) {
  .header-field {
    display: none;
  }
}

/* Container */
.header-container {
  max-width: 1850px;
  min-width: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gap, 20px);
  height: 100%;
}

@media (max-width: 1280px) {
  .header-container {
    height: 100%;
  }
}

/* Wrapper */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

@media (max-width: 1024px) {
  .header-wrapper {
    align-items: center;
  }
}

@media (max-width: 1280px) {
  .header-wrapper {
    height: 100%;
  }
}

/* Sol ve Sağ Navigasyon Container */
.header-nav-left,
.header-nav-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.header-nav-left {
  justify-content: center;
}

.header-nav-right {

  justify-content: center;
  padding-left: 0;
  margin-left: auto;
}

@media (max-width: 1280px) {

  .header-nav-left,
  .header-nav-right {
    display: none;
  }
}

/* Menü Listesi */
.header-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 1.25rem;
}

@media (min-width: 1280px) {
  .header-menu-list {
    gap: 1.5rem;
  }
}

@media (min-width: 1536px) {
  .header-menu-list {
    gap: 0.9rem;
  }
}

/* Menü Öğesi */
.header-menu-item {
  position: relative;
}

/* Menü Linkleri */
.header-menu-item.menu-brand .header-menu-link {
  /* color: #ed1f28; */
}
.header-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
}

.header-menu-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Dropdown Menu Item */
.header-menu-dropdown {
  position: relative;
  cursor: pointer;
}

.header-menu-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: white;
  font-size: 16px;
  font-weight: 800;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

/* Dropdown Arrow */
.header-menu-arrow,
.icon-chevron-down {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.header-menu-dropdown:hover .header-menu-arrow,
.header-menu-dropdown:hover .icon-chevron-down,
.header-nav-right .header-menu-dropdown:hover .icon-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.header-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 285px;
  background: white;
  border-radius: 21px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* margin-top: 5px; */
}
.header-menu-dropdown:hover .header-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1280px) {
  .header-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .header-dropdown-menu.active {
    display: block;
  }
}

/* Dropdown List */
.header-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

/* Dropdown Item */
.header-dropdown-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0;
}

.header-dropdown-item:last-child {
  border-bottom: none;
}

@media (max-width: 1280px) {
  .header-dropdown-item {
    width: 100%;
  }
}

/* Dropdown Link */
.header-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 15px 30px;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.header-dropdown-link:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.02);
  padding-left: 40px;
}

/* Logo */
.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  max-width: 270px;
  aspect-ratio: 27/6;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 1536px) {
  .header-logo {
    max-width: 270px;
  }
}

@media (min-width: 1280px) {
  .header-logo {
    max-width: 230px;
  }
}

@media (min-width: 1024px) {
  .header-logo {
    max-width: 200px;
    height: 107px;
  }
}

@media (max-width: 1024px) {
  .header-logo {
    aspect-ratio: 18/6;
    height: 60px;
  }
}

/* Sağ Menü */
.header-nav-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  /* display: flex; */
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1280px) {
  .header-nav-right ul {
    gap: 1.5rem;
  }
}

@media (min-width: 1536px) {
  .header-nav-right ul {
    gap: 0.9rem;
  }
}

.header-nav-right li {
  position: relative;
  padding: 0;
  flex-shrink: 0;
  min-width: fit-content;
}

@media (max-width: 1280px) {
  .header-nav-right {
    display: none;
  }
}

.header-menu-right-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: sans-serif;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
  z-index: 20;
  flex-shrink: 0;
}

.header-menu-right-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header-menu-right-item a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* Sağ Menü Dropdown */
.header-nav-right .header-menu-dropdown {
  position: relative;
}

.header-nav-right .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 285px;
  background: white;
  border-radius: 21px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;
}

.header-nav-right .sub-menu>div {
  padding: 0;
}

.header-nav-right .sub-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-nav-right .header-menu-dropdown:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}

.header-nav-right .header-menu-dropdown:hover .icon-chevron-down {
  transform: rotate(180deg);
}

.sub-menu>div {
  padding: 0;
}

.sub-menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sub-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0;
}

.sub-menu li:last-child {
  border-bottom: none;
}

.sub-menu a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 15px 30px;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.sub-menu a:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.02);
}

.sub-menu a span {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  letter-spacing: -0.5px;
  flex: 1;
}

.sub-menu a:hover span {
  color: #000;
}

.sub-menu .icon-arrow-right {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: all 0.3s ease;
  background: var(--primary-color, #1a1a1a);
  border-radius: 50%;
  color: white;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

.sub-menu a:hover .icon-arrow-right {
  display: flex;
  opacity: 1;
}

@media (max-width: 1280px) {
  .sub-menu .icon-arrow-right {
    display: none !important;
  }

  .sub-menu a span {
    color: #000;
    width: 100%;
  }
}

/* Hover Background */
.header-menu-hover-bg {
  position: absolute;
  top: 0;
  left: -300vw;
  width: 300vw;
  height: 250vh;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: -10;
}

.header-nav-right .header-menu-dropdown:hover .header-menu-hover-bg {
  opacity: 1;
}

@media (max-width: 1024px) {
  .header-menu-hover-bg {
    display: none;
  }
}

/* Language Selector */
.lang-span {
  margin-right: 0.5rem;
  font-size: 15px;
}

.lang-tr {
  margin-left: 0.5rem;
  font-size: 15px;
}


/* Scroll Durumları için Stiller */
.header-field.scrolling-up .header-menu-link,
.header-field.scrolling-down .header-menu-link {
  color: white;
}

.header-field.sub-page .header-menu-link {
  color: #5D5D5D;
}

.header-field.scrolling-up .header-menu-link,
.header-field.scrolling-down .header-menu-link {
  color: white !important;
}

/* Mobile Menu Styles */
@media (max-width: 1280px) {
  .headerMenu {
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-color, #1a1a1a);
    height: calc(100vh - 100px);
  }

  .headerMenu.active {
    opacity: 1;
    pointer-events: auto;
  }

  .headerMenu li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .header-menu-right-item {
    width: 100%;
    padding: 15px 30px;
    display: block;
  }
}


/* sadece mobilde goster */
@media (min-width: 1281px) {
  .m-header {
    display: none;
  }
}

.m-header {
  position: fixed;
  inset: 0 auto auto 0;
  right: 0;
  height: var(--m-bar-h);
  background: var(--m-primary);
  color: var(--m-text-on-primary);
  z-index: 110;
}

/* Ã¼st bar */
.m-bar {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--m-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-logo img {
  height: 75px;
  width: auto;
  display: block;
}

.m-burger, .m-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--m-border-on-primary);
  border-radius: 10px;
  background: transparent;
  color: var(--m-text-on-primary);
  cursor: pointer;
}

.m-close {
  border-color: var(--m-border);
  color: var(--m-text);
}

.m-icon {
  width: 24px;
  height: 24px;
}

/* backdrop */
.m-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

/* drawer */
.m-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: var(--m-drawer-w);
  transform: translateX(100%);
  background: var(--m-surface);
  color: var(--m-text);
  box-shadow: var(--m-shadow);
  transition: transform 300ms ease;
  display: flex;
  flex-direction: column;
  outline: none;
}

.m-drawer-head {
  height: var(--m-bar-h);
  padding: 0 var(--m-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--m-border);
}

.m-drawer-title {
  font-weight: 600;
  letter-spacing: .2px;
}

.m-drawer-body {
  padding: 10px 0 0;
  overflow-y: auto;
}

.m-drawer-foot {
  padding: 8px var(--m-pad-x) 24px;
  border-top: 1px solid var(--m-border);
  font-size: 12px;
  color: rgba(0, 0, 0, .5);
}

/* listeler */
.m-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.m-list > li {
  border-top: 1px solid var(--m-border);
}

.m-list > li:first-child {
  border-top: none;
}

.m-link {
  display: block;
  padding: 16px var(--m-pad-x);
  font-size: 17px;
  font-weight: 500;
  color: var(--m-text);
  text-decoration: none;
}

.m-link:hover {
  background: rgba(0, 0, 0, .05);
}

/* accordion */
.m-acc {
}

.m-acc-btn {
  width: 100%;
  padding: 16px var(--m-pad-x);
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.m-acc-btn:hover {
  background: rgba(0, 0, 0, .05);
}

.m-acc-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--m-acc-speed) ease;
}

.m-acc-btn[aria-expanded="true"] .m-acc-icon {
  transform: rotate(180deg);
}

.m-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--m-acc-speed) ease;
  background: #fff;
}

.m-sub-list {
  list-style: none;
  margin: 0;
  padding: 6px 0 12px;
}

.m-sub-link {
  display: block;
  padding: 12px calc(var(--m-pad-x) - 4px) 12px calc(var(--m-pad-x) + 8px + 12px);
  /* left indent */
  font-size: 16px;
  color: var(--m-text-dim);
  text-decoration: none;
}

.m-sub-link:hover {
  background: rgba(0, 0, 0, .05);
  color: var(--m-text);
}

.m-lang-prefix {
  color: rgba(0, 0, 0, .5);
  margin-right: 6px;
}

/* eriÅŸilebilirlik */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

/* AÃ§Ä±k durumlar (JS bu class'larÄ± ekler/Ã§Ä±karÄ±r) */
.m-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.m-drawer.is-open {
  transform: translateX(0);
}


.lang .lang-span::before {
  content: "";
  background: #ee1d24;
  width: 2px;
  height: 35%;
  right: 68px;
  top: 13px;
  position: absolute;
}

span.lang-tr {
  margin-left: 7px;
}

.scrolled {
  background: #023e75;
  height: 134px;
  margin: -7px 0;
}

.menu-brand {
  position: relative;
  right: 22px;
}
.menu-brand-rigth{
  position: relative;
  left: 22px;
}

.header-menu-link.menu-brand,
.header-menu-link.menu-brand-rigth {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

.header-menu-link.menu-brand img,
.header-menu-link.menu-brand-rigth img {
  display: block;
  width: clamp(92px, 8.4vw, 150px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1680px) and (min-width: 1281px) {
  .header-logo {
    max-width: 210px;
  }

  .menu-brand {
    right: 12px;
  }

  .menu-brand-rigth {
    left: 12px;
  }

  .header-menu-link.menu-brand img,
  .header-menu-link.menu-brand-rigth img {
    width: clamp(86px, 7.2vw, 128px);
  }
}

@media (max-width: 1440px) and (min-width: 1281px) {
  .header-logo {
    max-width: 190px;
  }

  .header-menu-link.menu-brand img,
  .header-menu-link.menu-brand-rigth img {
    width: clamp(78px, 6.4vw, 110px);
  }
}

@media (max-width: 1600px) and (min-width: 1281px) {
  .header-menu-list {
    gap: 0.45rem;
  }

  .header-menu-link,
  .header-menu-dropdown-btn {
    font-size: clamp(14px, 0.88vw, 16px);
    padding: 0.55rem 0.45rem;
  }

  .header-logo {
    max-width: clamp(150px, 11vw, 205px);
  }

  .header-menu-link.menu-brand img,
  .header-menu-link.menu-brand-rigth img {
    width: clamp(66px, 5.2vw, 96px);
  }
}

.scroll-contact {
  position: fixed;
  right: 60px;
  top: 30%;
  overflow: visible;
  display: flex;
  background-color: #e10d18;
  border-radius: 10px;
  flex-direction: column;
  padding: 0 0;
  gap: 0;
  font-size: 32px;
  z-index: 9999;
}

.scroll-contact img {
  cursor: pointer;
  position: relative;
  z-index: 2;
  width: 28px;
}

.scroll-contact a {
  position: relative;
  padding-top: 4px;
  margin: 0;
  height: 54px;
  border-bottom: 1px solid #fff6;
  width: 100%;
  display: block;
  padding: 0 10px 0 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.scroll-contact span {
  display: inline-block;
  position: relative;
  padding: 0 10px 5px 12px;
  border-bottom: 1px solid #fff6
}

.scroll-contact span:last-child {
  border-bottom: none
}

.scroll-contact a:hover img {
  color: #e62522
}

.scroll-contact img:hover {
  color: #e62522
}

.scroll-contact span ul li {
  list-style: none;
}

.scroll-contact span ul li a {
  padding: 14px 10px 0 12px;
  color: white;
}

.scroll-contact d {
  position: absolute;
  z-index: 1;
  width: 0;
  left: 0;
  display: flex;
  transition: all .5s;
  height: 100%;
  top: 0;
  align-items: center;
  justify-content: start;
  font-size: 14px;
  background-color: #01559c;
  text-transform: uppercase;
  font-weight: 600;
  transform: translateX(-100%);
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.client-logo-1-image img {
  filter: grayscale(100%);
  /* Logoyu siyah-beyaz yapar */
  transition: filter 0.3s ease;
  /* GeÃƒÂ§iÃ…Å¸ animasyonu ekler */
}

.client-logo-1-image img:hover {
  filter: grayscale(0%);
  /* ÃƒÅ“zerine gelindiÃ„Å¸inde renkli hale getirir */
}

.scroll-contact a:hover d {
  left: 12px;
  width: initial;
  padding: 0 55px 0 15px;
  background-color: #e10d18;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.scroll-contact span:hover d {
  left: 10px;
  width: initial;
  padding: 0 55px 0 15px;
  white-space: nowrap;
  opacity: 1;
  font-weight: 600;
  color: #fff;
  background-color: #fdb929;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.scroll-contact span.page-top:hover d {
  left: 10px;
  width: initial;
  padding: 0 55px 0 15px;
  white-space: nowrap;
  opacity: 1;
  font-weight: 600;
  color: #fff;
  background-color: #fdb929;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.invert-image {
  -webkit-filter: invert(100%);
  filter: invert(100%);
}

.preloader-inner img {
  display: block;
  margin: 0 auto;
  width: 240px;
  animation: preloadFloat 1.8s ease-in-out infinite;
}

@keyframes preloadFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ================== LOADER CSS ================== */
.warkas-loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #03243e 0%, #01559c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.loader-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.loader-gradient {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: loaderRotate 8s linear infinite;
  top: -50%;
  left: -50%;
}

@keyframes loaderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.loader-logo {
  position: relative;
  width: 120px;
  height: 120px;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-circle {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-progress {
  width: 300px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  border-radius: 10px;
  width: 0%;
  animation: progressLoad 2s ease-in-out forwards;
  box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

@keyframes progressLoad {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.warkas-loader.is-done {
  animation: loaderFadeOut 0.8s ease forwards;
}

@keyframes loaderFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
    visibility: hidden;
  }
}

@media (max-width: 768px) {
  .loader-logo {
    width: 80px;
    height: 80px;
  }
  .loader-progress {
    width: 250px;
  }
  .scroll-contact {
    position: fixed;
    right: 8px;
    top: 57%;
  }
}

a.m-menu-link.brand-logo img {
  margin: 14px;
  width: 125px;
}