@font-face {
  font-family: "Dela Gothic One";
  src: url("/wp-content/themes/mugtrucks-theme/assets/fonts/Dela_Gothic_One/DelaGothicOne-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #ef4140;
  --light-gray: #efefef;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "roboto", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style-type: none;
}

p {
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
}

select {
  background: transparent;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/*=== UTILITY CLASSES ===*/

/* padding */
.main-padding {
  padding-left: 7.3vw;
  padding-right: 7.3vw;
}

.left-padding {
  padding-left: 7.3vw;
}

.right-padding {
  padding-right: 7.3vw;
}

.inner-right {
  padding-right: 113px;
}

.inner-left {
  padding-left: 113px;
}

@media screen and (max-width: 1660px) {
  .main-padding {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .left-padding {
    padding-left: 5vw;
  }

  .right-padding {
    padding-right: 5vw;
  }

  .inner-right {
    padding-right: 50px;
  }

  .inner-left {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .main-padding {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .left-padding {
    padding-left: 6vw;
  }

  .right-padding {
    padding-right: 6vw;
  }

  .inner-right {
    padding-right: 40px;
  }

  .inner-left {
    padding-left: 40px;
  }

  .mob-main-padding {
    padding-left: 4.5vw;
    padding-right: 4.5vw;
  }

  .no-mob-padding {
    padding-left: 0;
    padding-right: 0;
  }
}

.mob-br {
  display: none;
}

@media (max-width: 768px) {
  .mob-br {
    display: block;
  }
}

/* text */
.text-center {
  text-align: center;
}

/* === UNIVERSAL CLASSES === */
.mt-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
  font-family: "Climate Crisis", "Roboto", sans-serif;
}

.mt-big-title {
  font-size: 65px;
  font-weight: 400;
  line-height: 65px;
  font-family: "Climate Crisis", "Roboto", sans-serif;
}

@media screen and (max-width: 1660px) {
  .mt-title {
    font-size: 35px !important;
  }

  .mt-big-title {
    font-size: 55px;
  }
}

.mt-text {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  line-height: 20px;
  font-weight: 400;
}

.mt-big-text {
  font-size: 20px;
  line-height: 25px;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 992px) {
  .mob-top-padding {
    padding-top: 75px !important;
  }
  .mob-bottom-margin {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .mt-title {
    font-size: 25px !important;
    line-height: 30px;
  }

  .mt-big-title {
    font-size: 40px;
    line-height: 40px;
  }
  .mt-text {
    font-size: 14px;
    line-height: 18px;
  }

  .mt-big-text {
    font-size: 18px;
    line-height: 20px;
  }
}

/* === HEADER === */

header.universal-header{
	filter: drop-shadow(0px 8px 6px rgba(0, 0, 0, 0.1));
position:relative;
	z-index:9;
}

#mt-header {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}

.mt-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a.mt-logo {
  user-select: none;
  cursor: default;
}

.mt-logo img {
  display: block;
  width: 100%;
  max-width: 153px;
}

@media screen and (max-width: 768px) {
  .mt-logo img {
    max-width: 135px;
  }
}

.mt-hamburger {
  position: relative;
  width: 39px;
  height: 39px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  /* overflow: hidden; */
  z-index: 10;
}

.mt-hamburger span {
  position: absolute;
  height: 6px;
  width: 100%;
  background: #000;
  left: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mt-hamburger span:nth-child(2) {
  transition: all 0.2s linear;
}

.mt-hamburger span:nth-child(1) {
  top: 0;
}

.mt-hamburger span:nth-child(2) {
  top: 17px;
}

.mt-hamburger span:nth-child(3) {
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .universal-header button.mt-hamburger {
    scale: 0.8;
    margin-top: 25px;
  }
}

body.active-side .mt-hamburger span:nth-child(1) {
  top: 17px;
  transform: rotate(45deg);
}

body.active-side .mt-hamburger span:nth-child(2) {
  opacity: 0;
  left: 100%;
}

body.active-side .mt-hamburger span:nth-child(3) {
  top: 17px;
  transform: rotate(-45deg);
}

body.active-side {
  overflow: hidden !important;
}

#mt-side-menu-container {
  position: fixed;
  left: -15px;
  top: 0;
  width: 750px;
  height: 100vh;
  background-color: #fff;
  z-index: 5;
  /* min-height: 500px; */
  overflow: auto;
  /* display: none; */
  opacity: 0;
  z-index: -99999999;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.2s linear;
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.2);
}

body.active-side #mt-side-menu-container {
  /* display: block; */
  left: 0;
  opacity: 1;
  z-index: 5;
  pointer-events: all;
  user-select: all;
}

.universal-header .mt-header-menu-content {
  padding-top: 280px;
  padding-bottom: 150px;
}

.universal-header .mt-logo img {
  max-width: 160px;
  margin-bottom: -65px;
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;
}

.universal-header .mt-header-content .mt-header-btn-column,
.universal-header .mt-header-content .mt-header-logo-column,
.universal-header .mt-header-content .mt-header-user-column {
  flex: 1;
  width: 33%;
}

.universal-header .mt-header-content .mt-header-logo-column {
  flex-basis: 140px;
}

#menu-mt-nav-menu li a {
  font-size: 54px;
  line-height: 1.1;
  font-family: "Climate Crisis", "Roboto", sans-serif;
  font-family: "Dela Gothic One", sans-serif;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  color: white;
  user-select: none;
}

@media (hover: hover) {
  #menu-mt-nav-menu li:hover a {
    color: #000;
  }
}

#menu-mt-nav-menu .current-menu-item a {
  color: #000;
}

.mt-lang {
  font-weight: bold;
  margin-top: 170px;
  font-size: 14px;
}

.mt-lang span {
  padding-right: 20px;
}

span.gr {
  color: var(--red);
}

@media screen and (max-width: 1660px) {
  #mt-side-menu-container {
    width: 700px;
  }

  #menu-mt-nav-menu li a {
    font-size: 45px;
  }
}
@media screen and (max-width: 1440px) {
  .universal-header .mt-header-menu-content {
    padding-top: 200px;
  }

  #mt-side-menu-container {
    width: 650px;
  }

  #menu-mt-nav-menu li a {
    font-size: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .mt-text.mt-lang {
    text-align: left !important;
  }
}

@media screen and (max-width: 768px) {
  .universal-header .mt-header-menu-content {
    padding-top: 170px;
  }

  #mt-side-menu-container {
    width: 100vw;
  }

  #menu-mt-nav-menu li a {
    font-size: 35px;
  }

  .universal-header .mt-logo img {
    max-width: 145px;
  }
}
@media screen and (max-width: 560px) {
  .universal-header .mt-header-menu-content {
    padding-top: 170px;
  }

  #menu-mt-nav-menu li a {
    font-size: 29px;
    line-height: 1.3;
  }
}

/* === FRANCHISE PAGE === */

#mt-franchise {
  padding-top: 90px;
  padding-bottom: 130px;
}

.mt-franchise-content .mt-text {
  max-width: 470px;
  margin: 0 auto;
  margin-top: 39px;
}

#mt-concept .mt-big-text {
  margin-top: 20px;
}

.mt-concept-info {
  display: flex;
  gap: 60px;
  margin-top: 137px;
}

.mt-concept-text {
  width: 30%;
}
.mt-concept-img {
  width: 70%;
}

.mt-concept-text .mt-title {
  margin-bottom: 39px;
}

@media screen and (max-width: 1200px) {
  #mt-franchise {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .mt-concept-info {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    padding: 0;
    flex-direction: column-reverse;
  }

  .mt-title {
    text-align: center;
  }

  .mt-text {
    text-align: center;
  }

  .mt-concept-text {
    width: 100%;
  }
  .mt-concept-img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #mt-franchise {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .mt-concept-info {
    margin-top: 38px;
    gap: 50px;
  }

  .mt-franchise-content .mt-text {
    margin-top: 10px;
  }
}

.mt-trucks {
  background: #000;
  display: flex;
  padding: 55px;
  border-radius: 36px;
  margin-top: 140px;
}

.mt-truck {
  padding-left: 60px;
  padding-right: 80px;
  padding-bottom: 33px;
  border-right: 1px solid white;
}

.mt-truck:first-child {
  padding-left: 0;
}

.mt-truck:last-child {
  border-right: none;
  padding-right: 0;
}

.mt-truck .truck-img {
  max-width: 186px;
  min-height: 100px;
  object-fit: contain;
  object-position: bottom;
}

.truck-img.central-truck {
  max-width: 250px;
}
.truck-img.hub-truck {
  max-width: 320px;
}

.mt-trucks .mt-truck-title {
  color: #fff;
  font-size: 40px;
  font-size: 30px;
  font-family: "Climate Crisis", "Roboto", sans-serif;
  font-weight: 400;
  margin-bottom: 43px;
  margin-top: 20px;
  padding-left: 20px;
  max-width: 400px;
}

@media screen and (max-width: 1660px) {
  .mt-trucks .mt-truck-title {
    font-size: 27px;
  }
}

@media screen and (max-width: 1400px) {
  .mt-truck {
    padding-left: 20px;
    padding-right: 30px;
  }

  .mt-truck .truck-img {
    max-width: 150px;
    min-height: 100px;
    object-fit: contain;
    object-position: bottom;
  }

  .truck-img.central-truck {
    max-width: 224px;
  }
  .truck-img.hub-truck {
    max-width: 300px;
  }

  .mt-trucks .mt-truck-title {
    margin-bottom: 25px;
    max-width: 170px;
  }
}

@media screen and (max-width: 1200px) {
  .mt-truck .truck-img {
    max-width: 133px;
    min-height: 100px;
    object-fit: contain;
    object-position: bottom;
  }

  .truck-img.central-truck {
    max-width: 200px;
  }
  .truck-img.hub-truck {
    max-width: 275px;
  }
}

.mt-trucks .mt-truck-text {
  color: #fff;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  padding-left: 20px;
}

@media screen and (max-width: 1400px) {
  .mt-trucks .mt-truck-text {
    font-size: 18px;
  }
}

.mt-concept-images {
  display: flex;
  justify-content: space-between;
  gap: 95px;
  padding: 0 50px;
}

@media screen and (max-width: 1660px) {
  .mt-concept-images {
    gap: 70px;
  }
}
@media screen and (max-width: 1400px) {
  .mt-concept-images {
    gap: 50px;
  }
}

.mt-concept-images img {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .desk-trucks,
  .desk-truck-images {
    display: none;
  }
}

/* mobile slider */

.mob-truck-container {
  background-color: #000;
  margin-bottom: 40px;
  margin-top: 35px;
}

.mob-truck {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  gap: 25px;
}

.mob-truck-logo {
  max-width: 205px;
  height: 108px;
  object-fit: contain;
  object-position: bottom;
}

.mob-central-img {
  max-width: 300px;
}
.mob-hub-img {
  max-width: 385px;
}

.mob-truck-title {
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  font-family: "Climate Crisis", "Roboto", sans-serif;
}

.mob-truck-text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.mob-truck-img {
  /* transform: translateY(50%); */
  margin-bottom: -100px;
}

.mob-trucks-control {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.mob-trucks-control img {
  max-width: 40px;
  cursor: pointer;
}

.mt-mob-trucks-swiper {
  display: none;
}

.mob-trucks-control {
  display: none;
}

@media screen and (max-width: 992px) {
  .mt-mob-trucks-swiper {
    display: block;
  }

  .mob-trucks-control {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .mob-truck-logo {
    max-width: 124px;
  }

  .mob-central-img {
    max-width: 177px;
  }
  .mob-hub-img {
    max-width: 250px;
  }

  .mob-truck-title {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    font-family: "Climate Crisis", "Roboto", sans-serif;
  }

  .mob-truck-text {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
  }
}

#mt-match {
  background-image: url(https://mugtrucks.gr/wp-content/uploads/2026/01/mt-bg-scaled.png);
  background-size: cover;
  background-position: top;
  padding-top: 95px;
  padding-bottom: 85px;
  margin-top: 110px;
}

.mt-match-title {
  font-weight: bold;
  font-size: 35px;
  font-family: "roboto", sans-serif;
}

.mt-match-subtitle {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  #mt-match {
    margin-top: 40px;
  }
  .mt-match-title {
    font-size: 25px;
    line-height: 30px;
  }
}

.mt-checks {
  display: flex;
  justify-content: space-between;
  /* max-width: 1430px;
  margin: 0 auto; */
  margin-top: 65px;
  /* position: relative; */
}

/* .mt-checks::after {
  content: '';
  position: absolute;
  top: 35px;
  left: 3px;
  right: 0;
  height: 10px;
  background: #000;
  z-index: 1;
} */

.mt-check {
  flex-basis: 25%;
  padding-right: 50px;
  position: relative;
}

.mt-check::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 10px;
  background: #000;
  z-index: 1;
}

.mt-check:first-child::after {
  left: 3px;
}

.mt-check-img {
  max-width: 70px;
  z-index: 2;
  position: relative;
}

.mt-check-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 23px;
  margin-top: 30px;
}

@media screen and (max-width: 1200px) {
  .mt-checks {
    flex-direction: column;
    gap: 50px;
    padding-bottom: 30px;
    overflow: hidden;
    padding: 0;
  }
  .mt-check {
    display: flex;
    align-items: start;
    gap: 30px;
    padding-right: 0;
  }

  .mt-check::after {
    top: 3px;
    left: 25px;
    width: 10px;
    height: 300px;
  }

  .mt-check:first-child::after {
    left: 25px;
  }

  .mt-check-text {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .mt-check-img {
    max-width: 60px;
  }

  .mt-check::after {
    left: 20px;
  }
  .mt-check:first-child::after {
    left: 20px;
  }
}

#mt-partners {
  background: #000;
  color: #fff;
}

.mt-partners {
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.mt-partner {
  flex-basis: 25%;
  padding-right: 20px;
  padding-left: 35px;
  min-height: 150px;
  padding-top: 50px;
  display: flex;
  align-items: start;
  border-right: 1px solid #fff;
  overflow: hidden;
}

.mt-partner p {
  font-size: 16px;
}

.mt-partner:first-child {
  border: none;
  padding-top: 30px;
  padding-left: 0;
}

.mt-partner:last-child {
  border-right: none;
}

.ideal-partners {
  font-family: "roboto", sans-serif;
  font-size: 35px;
  font-weight: bold;
  position: relative;
}

.ideal-partners::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 165px;
  height: 75px;
  background-image: url(https://mugtrucks.gr/wp-content/uploads/2026/01/green-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  right: -150px;
}

@media screen and (max-width: 1400px) {
  .ideal-partners::after {
    height: 60px;
  }
}
@media screen and (max-width: 1270px) {
  .ideal-partners::after {
    height: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .mt-partners {
    flex-direction: column;
    padding: 40px 0;
  }
  .mt-partner {
    flex-basis: 25%;
    padding-right: 0;
    padding-left: 0;
    min-height: 0;
    padding-top: 30px;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #fff;
  }

  .mt-partner:last-child {
    border: none;
  }

  .ideal-partners::after {
    content: "";
    position: absolute;
    top: 10px;
    width: 165px;
    height: 105px;
    background-image: url(https://mugtrucks.gr/wp-content/uploads/2026/01/down-arr.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    right: -150px;
  }
}

@media screen and (max-width: 768px) {
  .ideal-partners {
    font-size: 25px;
    line-height: 23px;
  }

  .ideal-partners::after {
    top: 0;
    right: -170px;
    height: 70px;
  }

  .mt-check-text {
    font-size: 16px;
  }
}

.mt-offer-content {
  padding-top: 143px;
}

.mt-offer-title {
  font-size: 35px;
  font-weight: bold;
  line-height: 43px;
}

@media screen and (max-width: 768px) {
  .mt-offer-content {
    padding-top: 60px;
  }
  .mt-offer-title {
    text-align: center;
    font-size: 25px;
    line-height: 25px;
  }
}

/* SWIPER */

.mt-offer-slider {
  margin-top: 80px;
  display: flex;
  align-items: end;
  gap: 50px;
}

.mt-offer-swiper.swiper {
  width: 100%;
  min-height: 300px;
}

.slide-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  margin: 20px 0;
}

.mt-slider-control {
  padding-bottom: 60px;
  display: flex;
  gap: 40px;
}

.mt-slider-control * {
  transition: all 0.3s;
}

.mt-slider-control > div {
  cursor: pointer;
}

@media (hover: hover) {
  .mt-control-for:hover #Ellipse_6 circle {
    opacity: 0;
  }
  .mt-control-for:hover #Path_426 {
    stroke-width: 6;
  }

  .mt-control-prev:hover #Ellipse_5 circle {
    opacity: 0;
  }

  .mt-control-prev:hover #Path_425 {
    stroke-width: 6;
  }
}

.mt-offer-swiper .swiper-slide img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.mt-offer-swiper .swiper-slide.swiper-slide-active img {
  filter: grayscale(0%);
}

@media screen and (max-width: 1200px) {
  .mt-offer {
    padding: 0;
  }

  .mt-offer-slider {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .mt-offer-slider {
    margin-top: 25px;
    gap: 30px;
  }

  .mt-offer-swiper.swiper {
    min-height: 200px;
  }

  .slide-text {
    font-size: 18px;
  }

  .mt-slider-control svg {
    width: 40px;
    height: 40px;
  }
}

/* STAGES */

.mt-stages {
  margin-top: 160px;
  display: flex;
  padding-bottom: 315px;
}

.mt-stages-info {
  flex-basis: 48%;
}

.mt-stages-img {
  flex-basis: 52%;
}

.mt-stages-title {
  font-size: 35px;
  max-width: 410px;
  font-weight: bold;
  line-height: 43px;
}

.mt-stages-acc {
  border-left: 15px solid #000;
  padding-left: 30px;
  margin-top: 50px;
}

.mt-acc-item {
  display: flex;
  align-items: start;
  gap: 75px;
  padding-right: 200px;
  margin-bottom: 70px;
}

@media screen and (max-width: 1660px) {
  .mt-acc-item {
    display: flex;
    align-items: start;
    gap: 75px;
    padding-right: 100px;
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 1200px) {
  .mt-stages {
    margin-top: 80px;
    padding-left: 0;
    padding-bottom: 200px;
  }

  .mt-stages-info {
    flex-basis: 100%;
  }
  .mt-stages-img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .mt-stages {
    margin-top: 20px;
  }
  .mt-stages-title {
    font-size: 25px;
    line-height: 23px;
  }
}

.mt-acc-number {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  font-family: "Climate Crisis", "Roboto", sans-serif;
}

.mt-acc-item.active .mt-acc-number {
  color: var(--red);
}

.mt-acc-question {
  cursor: pointer;
  user-select: none;
}

.mt-acc-question p {
  font-size: 20px;

  font-weight: bold;
}

.mt-acc-answer {
  display: none;
}

.mt-acc-item.active .mt-acc-answer {
  display: block;
}

.mt-acc-answer p {
  font-size: 16px;
  margin-top: 18px;
}

@media screen and (max-width: 768px) {
  .mt-acc-number {
    font-size: 30px;
  }
  .mt-acc-item {
    gap: 20px;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .mt-acc-answer p {
    font-size: 14px;
    margin-top: 16px;
  }
}

.mt-button {
  font-family: "Dela Gothic One", sans-serif;
  font-size: 14px;
  letter-spacing: 1.5;
  text-align: center;
  display: inline-block;
  margin-left: 45px;
  border: 1px solid black;
  border-radius: 30px;
  padding: 15px 35px;
  background: url(https://mugtrucks.gr/wp-content/uploads/2026/01/RED.png);
  background-size: 103%;
  background-repeat: no-repeat;
  background-position: 0 80px;
  transition: all 0.3s linear;
  cursor: pointer;
}

@media (hover: hover) {
  .mt-button:hover {
    background-position: -1px -30px;
  }
}

.mt-stages-cta {
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  padding-left: 7px;
}

@media screen and (max-width: 768px) {
  .mt-acc-number {
    font-size: 30px;
  }
  .mt-acc-item {
    gap: 20px;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .mt-button {
    margin-left: 0;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    padding: 10px 25px;
  }

  .mt-stages-cta {
    font-size: 16px;
  }
}

/* FAQ */

#mt-faq {
  background-image: url(https://mugtrucks.gr/wp-content/uploads/2026/01/mt-bg-scaled.png);
  background-size: cover;
  background-position: top;
}

.mt-faq-content {
  position: relative;
  padding-bottom: 125px;
  padding-top: 60px;
  max-width: 1920px;
  margin: 0 auto;
}

.mt-pos-abs-img {
  position: absolute;
  max-width: 215px;
}

img.drink {
  bottom: -95px;
  left: 240px;
}

img.red-logo {
  top: -95px;
  right: 300px;
}

@media screen and (max-width: 1200px) {
  img.red-logo {
    right: 100px;
  }

  img.drink {
    bottom: -95px;
    left: 120px;
  }
}
@media screen and (max-width: 768px) {
  img.red-logo {
    right: 30px;
    top: unset;
    bottom: -80px;
    max-width: 145px;
  }

  img.drink {
    display: none;
  }

  .mt-faq-content {
    padding-bottom: 40px;
  }
}

.mt-faq-acc {
  max-width: 720px;
  min-height: 340px;
  margin: 110px auto 0 auto;
}

.mt-faq-item {
  border-bottom: 4px solid #000;
}

.mt-faq-item:last-child {
  border: none;
}

.mt-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}

.mt-faq-question p {
  font-size: 20px;
  font-weight: bold;
}

.mt-faq-question img {
  transition: all 0.2s linear;
  max-width: 10px;
  transform: rotate(90deg);
}

.mt-faq-item.active .mt-faq-question img {
  transform: rotate(270deg);
}

.mt-faq-answer p {
  font-size: 16px;
  padding-bottom: 20px;
  display: none;
}

.mt-faq-item.active .mt-faq-answer p {
  display: block;
}

@media screen and (max-width: 768px) {
  .mt-faq-acc {
    margin-top: 50px;
    min-height: 435px;
  }

  .mt-faq-question {
    align-items: start;
  }
  .mt-faq-question img {
    margin-top: 5px;
  }

  .mt-faq-question p {
    font-size: 18px;
    font-weight: bold;
    padding-right: 50px;
  }
}

/*  */
#mt-contact {
  min-height: 500px;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
}

.mg-bottom-cups {
  position: absolute;
  bottom: -5px;
  right: 0;
  max-width: 600px;
}

@media screen and (max-width: 1480px) {
  .mg-bottom-cups {
    max-width: 300px;
  }
}

.mt-contact-title {
  font-size: 35px;
  max-width: 860px;
  margin: 0 auto;
  line-height: 43px;
}

@media screen and (max-width: 1200px) {
  .mt-contact-title {
    font-size: 30px;
    max-width: 710px;
  }

  .mg-bottom-cups {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #mt-contact {
    padding-top: 100px;
    padding-bottom: 150px;
    position: relative;
    overflow: hidden;
  }

  .mt-contact-title {
    font-size: 25px;
    line-height: 29px;
  }
}

/* footer */

footer {
  background: #000;
  /* overflow: hidden; */
}

.mt-footer {
  display: flex;
  justify-content: start;
  align-items: center;
}

footer .footer-logo {
  margin-top: -45px;
  z-index: 2;
}

footer .footer-img {
  max-width: 190px;
  margin-right: 85px;
}

footer .footer-menu-items {
  display: flex;
  display: none;
}
footer .footer-menu-item {
  color: #fff;
  margin-right: 38px;
  font-size: 14px;
  line-height: 35px;
}

footer .footer-social {
  /* flex-grow: 1; */
  position: relative;
  /* margin-left: auto; */
}

footer .footer-line {
  height: 1px;
  flex: 1;
  background: #fff;
  margin-right: 15px;
  margin-top: 4px;
}

/* .footer-social::before {
  content: '';
  position: absolute;
  top: 50%;
  height: 2px;
  width: 700px;
  background: #fff;
  right: 100%;
} */

footer .footer-social-items {
  display: flex;
  justify-content: end;
  gap: 50px;
}

footer .social-img {
  height: 35px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .mt-footer {
    flex-direction: column;
    padding-bottom: 60px;
  }

  .footer-line {
    display: none;
  }

  footer .footer-logo {
    margin-top: -70px;
  }

  footer .footer-img {
    margin: 0;
  }
}
/* form CSS */
.wpcf7.js,
form {
  width: 100% !important;
  min-width: 1024px !important;
  max-width: 1024px;
  margin: 0 auto;
}

.mt-form-container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif !important;
  margin-top: 60px;
}

.mt-row {
  display: flex;
  gap: 90px;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .mt-row {
    flex-direction: column;
    gap: 0;
  }
}

.mt-row > div {
  flex: 1;
}

.mt-row input,
.mt-row select,
.mt-row textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding-bottom: 14px;
  padding-top: 14px;
  font-size: 25px;
  font-family: "Roboto", sans-serif !important;
  font-weight: bold;
}
.mt-row input[type="checkbox"] {
  width: auto !important;
  max-width: 12px !important;
}

.mt-row p {
  margin: 15px 0;
}

.mt-acc label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mt-acc input[type="checkbox"] {
  max-width: 12px;
  margin-top: 3px;
}
.mt-acc .wpcf7-list-item-label {
  font-size: 12px;
}

.mt-acc .wpcf7-list-item {
  margin: 0;
}

.mt-row *::placeholder {
  color: #000;
  opacity: 35%;
}

.mt-row .wpcf7-submit {
  background: none;
  border: 1px solid #000;
  padding: 0;
  display: block;
  margin-top: 50px;
  max-width: 190px;
  padding: 15px 8px;
  border-radius: 24px;
  font-size: 14px;
  color: #000;
  font-weight: 400;
  background: url("https://mugtrucks.gr/wp-content/uploads/2026/01/RED.png");
  background-size: 103%;
  background-repeat: no-repeat;
  background-position: 0 80px;
  transition: all 0.3s linear;
}

@media (hover: hover) {
  .mt-row .wpcf7-submit:hover {
    background-position: -1px -30px;
  }
}

.mt-row .wpcf7-not-valid-tip {
  font-size: 14px;
}

input.wpcf7-submit {
  font-family: "Dela Gothic One", "Syne", "Roboto", sans-serif !important;
}

@media screen and (max-width: 1200px) {
  .wpcf7.js,
  form {
    min-width: 0 !important;
  }
  .mt-row {
    flex-direction: column;
    gap: 0;
  }

  .mt-row input,
  .mt-row select,
  .mt-row textarea {
    font-size: 18px;
  }

  .mt-acc input[type="checkbox"] {
    margin-top: 3px;
  }

  .mt-row .wpcf7-submit {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== BLOG PAGE ===== */

main.blog-main {
  background: var(--light-gray);
  /* padding-top: 140px;
  padding-bottom: 275px; */
}

#mt-blog {
  padding-top: 140px;
  padding-bottom: 275px;
}

#mt-blog h1 {
  font-size: 40px;
  margin-bottom: 34px;
}

#mt-blog .mt-text {
  max-width: 451px;
  font-size: 16px;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

.blog-posts-grid {
  margin-top: 115px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px 70px;
}

.post-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.post-images {
  position: relative;
}

.post-img {
  min-height: 40px;
  aspect-ratio: 5/4;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  filter: grayscale(100%);
  transition: all 0.3s linear;
}

@media (hover: hover) {
  .post-item:hover .post-img {
    filter: grayscale(0);
  }
}

.spinning-drink {
  position: absolute;
  max-width: 100px;
  right: 18px;
  bottom: -35px;
  scale: 1.5;
  transform: rotate(360deg);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.97, 1.11);
}

@media (hover: hover) {
  .post-item:hover .spinning-drink {
    scale: 1;
    transform: rotate(0);
    opacity: 1;
  }
}

.post-date {
  margin-top: 35px;
  margin-bottom: 35px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.post-title {
  font-size: 30px;
  line-height: 40px;
}

.post-exc {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}

.read-more-btn {
  font-family: "Dela Gothic One", "Syne", "Roboto", sans-serif !important;
  font-size: 14px;
  border-radius: 30px;
  border: 1px solid #000;
  max-width: 190px;
  margin-top: 44px;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 40px;
  padding-left: 20px;
  text-align: center;
  transition: all 0.3s linear;
  background: url("https://mugtrucks.gr/wp-content/themes/mugtrucks-theme/assets/images/read-more-red.png");
  background-size: 103%;
  background-repeat: no-repeat;
  background-position: 0 80px;
}

@media (hover: hover) {
  .read-more-btn:hover {
    padding-right: 20px;
    background-position: 0 -18px;
  }
}

@media screen and (max-width: 1200px) {
  .blog-posts-grid {
    margin-top: 65px;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
  }
}

@media screen and (max-width: 992px) {
  .blog-posts-grid {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  #mt-blog {
    padding-bottom: 88px;
  }

  .post-date {
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 35px;
  }

  .post-title {
    font-size: 18px;
    line-height: 20px;
  }

  .post-exc {
    font-size: 15px;
    font-weight: 400;
    margin-top: 20px;
  }

  .post-item .read-more-btn {
    min-width: 190px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
  }
}

/* ===== SINGLE POST ====== */

#mt-single-post {
  padding-bottom: 240px;
  padding-top: 160px;
  position: relative;
}

#mt-single-post::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 900px;
  background-image: url("https://mugtrucks.gr/wp-content/themes/mugtrucks-theme/assets/images/mt-big-scale-bg.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;

  z-index: 0;
}

.mt-post-max-width {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  position: relative;
}

.mt-single-title {
  font-size: 50px;
  font-weight: bold;
  line-height: 55px;
  margin-bottom: 20px;
}

.mt-single-featured-img {
  margin-top: 113px;
}

.mt-single-date {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.mt-single-text {
  margin-top: 75px;
  font-size: 16px;
  font-weight: 400;
}

.mt-single-divider {
  height: 15px;
  background-color: #000;
  margin-top: 85px;
  margin-bottom: 25px;
}

.mt-share-container {
  display: flex;
  justify-content: space-between;
}

.mt-share-container p {
  font-size: 14px;
  font-weight: bold;
  font-family: "Sofia Sans Condensed", "Roboto", sans-serif;
}

.mt-share-icons {
  display: flex;
  gap: 45px;
}

.mt-share-icons img {
  display: block;
  height: 40px;
  cursor: pointer;
}

.mt-blog-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  #mt-single-post {
    padding-bottom: 150px;
    padding-top: 80px;
  }

  .mt-single-title {
    font-size: 40px;
    line-height: 45px;
  }
  #mt-single-post::after {
    height: 700px;
  }

  .mt-single-date {
    font-size: 18px;
  }
}
@media screen and (max-width: 590px) {
  .mt-single-title {
    font-size: 25px;
    line-height: 30px;
  }
  .mt-single-date {
    font-size: 16px;
  }
  .mt-single-featured-img {
    margin-top: 50px;
  }

  #mt-single-post::after {
    height: 420px;
  }

  .mt-share-icons {
    gap: 30px;
  }

  .mt-share-icons img {
    height: 30px;
  }
}

/* ====== NEWSLETTER SECTION ======== */

.mt-newsletter-content {
  background: url("https://mugtrucks.gr/wp-content/themes/mugtrucks-theme/assets/images/newsletter-bg.png");
  background-position: top;
  background-size: cover;
  padding-top: 125px;
  padding-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.newsletter-title {
  font-size: 40px;
  font-family: "Climate Crisis", "Roboto", sans-serif;
  min-width: 355px;
}

.mt-newsletter-content h3 + div.wpcf7.js {
  margin-left: 0 !important;
  margin-right: 70px !important;
  min-width: 0 !important;
}

.mt-newsletter-container input {
  background-color: #efefef !important;
}

.newsletter-drink {
  position: absolute;
  max-width: 185px;
  left: 25%;
  top: -100px;
  z-index: 1;
  transition: all 0.2s linear;
}

@media (hover: hover) {
  .newsletter-drink:hover {
    transform: rotate(30deg);
  }
}

@media screen and (max-width: 992px) {
  .newsletter-title {
    font-size: 35px;
  }
}
@media screen and (max-width: 840px) {
  .mt-newsletter-content {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-title {
    font-size: 30px;
    text-align: center;
  }
  .mt-newsletter-content h3 + div.wpcf7.js {
    margin-right: 0 !important;
  }

  .newsletter-drink {
    max-width: 150px;
    left: 5%;
    top: -80px;
  }
}

@media screen and (max-width: 560px) {
  .mt-newsletter-content {
    padding-top: 70px;
  }

  .newsletter-title {
    font-size: 25px;
    min-width: 0;
  }

  .newsletter-drink {
    max-width: 100px;
    left: 5%;
    top: -50px;
  }
}

/* ==== CONTACT PAGE ===== */

#mt-contact-page {
  background-color: #000;
  padding-top: 130px;
  padding-bottom: 160px;
}

.mt-contact-page-content h1 {
  font-size: 40px;
  margin-bottom: 40px;
  color: #fff;
}
.mt-contact-page-content p.mt-text {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.mt-contact-container {
  margin-top: 100px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 40px;
}
.mt-contact-container > div {
  flex: 0 0 50%;
}

.mt-contact-page-form {
  margin-top: 0;
}

.mt-contact-page-form input[type="text"],
.mt-contact-page-form input[type="email"],
.mt-contact-page-form textarea {
  background: #000;
  border-bottom-color: #fff;
  color: #fff;
}

.mt-contact-page-form input[type="text"]::placeholder,
.mt-contact-page-form input[type="email"]::placeholder,
.mt-contact-page-form textarea::placeholder {
  color: #fff;
  opacity: 0.3;
}

.mt-contact-page-form input[type="submit"] {
  color: #fff;
  border-color: #fff;
  min-width: 190px;
}

@media (hover: hover) {
  .mt-contact-page-form input[type="submit"]:hover {
    color: #000;
    border-color: #000;
  }
}

.mt-contact-container .mt-form-image {
  padding-left: 88px;
  padding-bottom: 80px;
  display: flex;
  align-items: flex-end;
}

.mt-contact-container .mt-form-image img {
  margin-bottom: 104px;
}

.car-img {
  transition: all 0.4s ease-in;
}

#mt-contact-page {
  overflow: hidden;
}
#mt-contact-page:hover .car-img,
#mt-contact-page.isInView .car-img {
  transform: translateX(150px);
}

#mt-b2b {
  padding-top: 120px;
  margin-bottom: -20px;
}

.mt-b2b-content {
  display: flex;
}

.b2b-img-section {
  height: 100%;
  object-fit: cover;
}

.b2b-info-section {
  padding-left: 95px;
  padding-top: 40px;
}

.b2b-info-section h3 {
  margin-bottom: 20px;
}

.b2b-subtitle {
  margin-bottom: 46px;
  font-size: 20px;
}

.b2b-info-img {
  width: 43%;
  margin-bottom: 40px;
  margin-left: auto;
}
.b2b-info-section-mob {
  display: none;
}

@media screen and (max-width: 1920px) {
  .b2b-info-img {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .b2b-info-img {
    display: none;
  }
  .b2b-info-section-mob {
    display: block;
    padding-top: 50px;
  }

  .b2b-info-img.mob {
    display: block;
    margin: 0;
    width: 100%;
  }

  #mt-b2b {
    padding-top: 0;
  }

  .mt-b2b-content {
    padding: 0;
    flex-direction: column;
  }

  .b2b-info-section {
    padding-left: 6vw;
    padding-right: 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
  }

  .b2b-info-section h3 {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .b2b-subtitle {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 992px) {
  #mt-contact-page {
    padding-top: 75px;
    padding-bottom: 35px;
  }
  .mt-contact-page-content {
    overflow: hidden;
  }

  .mt-contact-container {
    flex-direction: column;
  }

  .mt-contact-page-form input[type="submit"] {
    margin-top: 15px;
  }

  .mt-contact-container .mt-form-image {
    padding: 0;
  }

  .car-img {
    max-width: 400px;
    width: 40%;
    position: relative;
    right: 18%;
    min-width: 200px;
  }
  .mt-contact-container .mt-form-image img {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .mt-contact-page-content h1 {
    margin-bottom: 20px;
  }
  .mt-contact-container {
    margin-top: 50px;
  }
}

.mt-b2b-ask {
  margin-left: 0;
  margin-top: 38px;
}

/* ======= HOME ======= */

main.mt-home-main-container {
  overflow: hidden;
}

/* hero section */
.mt-hero-content {
  background-color: #000;
  padding-top: 120px;
  padding-bottom: 140px;
}

h1.hero-title {
  font-size: 65px;
  line-height: 63px;
  color: #fff;
  z-index: 1;
  position: relative;
}

.hero-img {
  margin-top: -30px;
  position: relative;
  left: 70px;
  bottom: 40px;
  user-select: none;
}

.hero-img.hovered {
  display: none;
  user-select: none;
}

@media (hover: hover) {
  .mt-hero-images-container:hover .hero-img.hovered {
    display: block;
  }
  .mt-hero-images-container:hover .hero-img.show-first {
    display: none;
  }
}

@media screen and (max-width: 1660px) {
  h1.hero-title {
    font-size: 55px !important;
    line-height: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .mt-hero-content {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  h1.hero-title {
    font-size: 45px !important;
    line-height: 50px;
    text-align: left;
  }
}

@media screen and (max-width: 992px) {
  h1.hero-title {
    font-size: 36px !important;
    line-height: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .mt-hero-images-container {
    display: none;
  }

  .mt-hero-content {
    background-image: url("https://mugtrucks.gr/wp-content/themes/mugtrucks-theme/assets/images/mob-bg.png");
    background-repeat: no-repeat;
    background-position: 80% 180px;
    background-size: 148vw;
    padding-top: 75px !important;
    padding-bottom: 70vw;
  }

  h1.hero-title {
    font-size: 30px !important;
    line-height: 35px;
    margin-bottom: 40px;
  }
}

/* what the truck */

#mt-what-the-truck {
  position: relative;
}

#mt-what-the-truck::before {
  content: "";
  position: absolute;
  left: 0;
  top: -20px;
  width: 100%;
  height: 1300px;
  /* background: url("https://mugtrucks.gr/wp-content/themes/mugtrucks-theme/assets/images/newsletter-bg.png"); */
  background: url("https://mugtrucks.gr/wp-content/themes/mugtrucks-theme/assets/images/spike-bg.webp");
  background-size: cover;
  z-index: 0;
}

#mt-what-the-truck > * {
  z-index: 1;
  position: relative;
}

.mt-what-the-truck-content {
  padding-top: 80px;
}

.mt-hover-trucks-container {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}

.mt-mob-home-trucks {
  display: none;
}

.mt-hover-truck-hidden {
  opacity: 0;
  position: relative;
  z-index: -1;
  width: 40%;
}

.mt-hover-truck-visible {
  width: 40%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 1;
  transition: all 0.3s linear;
}

.mt-hover-truck-hovered {
  width: 62%;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 0;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease-in;
}

@media (hover: hover) {
  .mt-hover-trucks-container:hover .mt-hover-truck-visible {
    left: 0;
    transform: translateX(0);
  }
  .mt-hover-trucks-container:hover .mt-hover-truck-hovered {
    right: 0;
    transform: translateX(0);
    opacity: 1;
  }
}

@media screen and (max-width: 992px) {
  .mt-hover-truck-hidden,
  .mt-hover-truck-hovered {
    display: none;
  }

  .mt-hover-truck-visible {
    position: static;
    transform: translateX(0);
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .mt-mob-home-trucks {
    margin-top: -22px;
    display: block;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .mt-what-the-truck-content {
    padding-top: 35px;
  }

  .mt-hover-trucks-container {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

.mt-what-the-truck-content {
  padding-bottom: 0;
}

.mt-what-the-truck-content .mt-text {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.mt-what-the-truck-content .mt-button {
  width: 240px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 55px;
  margin-bottom: 114px;
}

.mt-grid-gallery-parent {
  max-width: 1666px;
  max-height: 980px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(8, 1fr);
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  margin-bottom: 140px;
}

.mt-grid-gallery-parent img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mt-img1 {
  grid-area: 1 / 1 / 6 / 4;
}
.mt-img2 {
  grid-area: 6 / 1 / 9 / 4;
}
.mt-img3 {
  grid-area: 1 / 4 / 5 / 6;
}
.mt-img4 {
  grid-area: 1 / 6 / 5 / 8;
}
.mt-img5 {
  grid-area: 5 / 4 / 9 / 6;
}
.mt-img6 {
  grid-area: 5 / 6 / 9 / 8;
}

@media screen and (max-width: 1200px) {
  .mt-grid-gallery-parent {
    background-color: var(--light-gray);
    margin-bottom: 110px;
  }

  .mt-what-the-truck-content .mt-button {
    margin-bottom: 77px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 992px) {
  #mt-what-the-truck::before {
    height: 1000px;
  }
  .mt-grid-gallery-parent {
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 768px) {
  .mt-grid-gallery-parent {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 460px) {
  #mt-what-the-truck::before {
    height: 900px;
  }
}
@media screen and (max-width: 360px) {
  #mt-what-the-truck::before {
    height: 750px;
  }
}

/* trust the truck */
.mt-trust-the-truck-content .mt-text {
  max-width: 1050px;
  text-wrap: balance;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.mt-home-tabs {
  margin-top: 125px;
  padding-bottom: 110px;
}

.mt-tabs-control {
  display: flex;
  justify-content: space-between;
  max-width: 865px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}

.tab-control {
  font-family: "Climate Crisis", "Roboto", sans-serif;
  font-size: 30px;
  background: transparent;
  border: none;
  color: #000;
  transition: color 0.2s linear;
  cursor: pointer;
}

@media (hover: hover) {
  .tab-control:hover {
    color: var(--red);
  }
}

.tab-control.active {
  color: var(--red);
}

@media screen and (max-width: 992px) {
  .mt-tabs-control {
    justify-content: center;
    gap: 30px;
  }
}

@media screen and (max-width: 850px) {
  .tab-control {
    font-size: 25px;
  }
}

@media screen and (max-width: 710px) {
  .mt-home-tabs {
    margin-top: 30px;
  }
  .tab-control {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .tab-control {
    font-size: 18px;
  }
}
@media screen and (max-width: 510px) {
  .tab-control {
    font-size: 15px;
  }
}

.mt-tab {
  margin-top: 144px;
}

#experience-tab {
  display: none;
  align-items: flex-start;
  gap: 10px;
}
#experience-tab.active-tab {
  display: flex;
}

#experience-tab .mt-exp:nth-child(even) {
  padding-top: 190px;
}

#experience-tab .mt-exp {
  width: 25%;
  position: relative;
}

.top-num {
  font-size: 215px;
  line-height: 170px;
  /* font-weight: bold; */
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  stroke: #000;
  color: transparent;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 2;
  font-family: "Climate Crisis", "Roboto", sans-serif;
  font-family: "Dela Gothic One", "Roboto", sans-serif;
}

.mt-exp:nth-child(odd) .top-num {
  bottom: calc(100% - 80px);
  left: -70px;
}
.mt-exp:nth-child(even) .top-num {
  bottom: calc(100% - 210px);
  left: -10px;
}

.mt-exp:nth-child(odd) .top-num.three {
  bottom: calc(100% - 60px);
  left: -135px;
}

#experience-tab img {
  aspect-ratio: 1/1;
  height: 100%;
  object-fit: cover;
}

.mt-exp .exp-step {
  margin-top: 25px;
  font-size: 30px;
  font-family: "Climate Crisis", "Roboto", sans-serif !important;
}

@media screen and (max-width: 1080px) {
  .top-num {
    font-size: 150px;
  }
  .mt-exp:nth-child(odd) .top-num {
    left: -49px;
    bottom: calc(100% - 60px);
  }

  .mt-exp .exp-step {
    font-size: 25px;
  }
}

@media screen and (max-width: 992px) {
  #experience-tab .mt-exp:nth-child(even) {
    padding-top: 0;
  }

  .mt-exp:nth-child(odd) .top-num,
  .mt-exp:nth-child(even) .top-num,
  .mt-exp:nth-child(odd) .top-num.three {
    bottom: 85%;
    left: 0;
  }
}

@media screen and (max-width: 850px) {
  .mt-exp {
    display: none;
  }

  #experience-tab {
    margin-top: 35px;
  }
}

.mt-mob-exp-content {
  display: none;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 850px) {
  .mt-mob-exp-content {
    display: block;
  }
}

.mt-mob-nums-container {
  width: 100%;
  max-width: 992px;
  display: flex;
}

.mt-mob-num {
  font-size: 110px;
  line-height: 120px;
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: #000;
  stroke: #000;
  color: transparent;
  z-index: 2;
  font-family: "Climate Crisis", "Roboto", sans-serif;
  font-family: "Dela Gothic One", "Roboto", sans-serif;
  flex-basis: 25%;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.mt-mob-num.active-num {
  bottom: -30px;
}

.mt-mob-num-info {
  width: 55%;
}

.mt-mob-num-text {
  font-size: 25px;
  font-weight: 400;
  font-family: "Climate Crisis", "Roboto", sans-serif !important;
}

@media screen and (max-width: 768px) {
  .mt-mob-num {
    font-size: 100px;
    line-height: 120px;
  }
}
@media screen and (max-width: 610px) {
  .mt-mob-num {
    font-size: 60px;
    line-height: 80px;
  }
  .mt-mob-num-text {
    font-size: 20px;
  }
}

#franchise-tab {
  display: none;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 300px;
  background-image:
    url("https://mugtrucks.gr/wp-content/themes/mugtrucks-theme/assets/images/fran-left-bg.png"),
    url("https://mugtrucks.gr/wp-content/themes/mugtrucks-theme/assets/images/fran-right-bg.png");
  background-position:
    left top,
    right top;
  background-repeat: no-repeat;
}

#franchise-tab.active-tab {
  display: flex;
}

.fran-tab-content p {
  margin-top: 79px;
  margin-bottom: 57px;
  font-size: 20px;
  max-width: 400px;
}

.fran-tab-content a {
  display: block;
  max-width: 220px;
  margin: 0 auto;
  text-align: center;
}

.mt-mob-fran-img {
  display: none;
}

@media screen and (max-width: 1440px) {
  #franchise-tab {
    background-size: auto, 30%;
  }
}
@media screen and (max-width: 1200px) {
  #franchise-tab {
    background: none;
    flex-direction: column;
    gap: 30px;
    margin-top: 45px;
    padding-bottom: 0;
  }
  .mt-mob-fran-img {
    display: block;
  }

  .fran-tab-content p {
    line-height: 22px;
    margin-top: 25px;
    margin-bottom: 30px;
  }
}

#merch-tab {
  display: none;
}
#merch-tab.active-tab {
  display: flex;
}

.merch-tab-control {
  /* display: none; */
}

@media screen and (max-width: 992px) {
  .merch-tab-control {
    display: none;
  }
}

.mt-tab-categories {
  display: flex;
  width: 100%;
  max-width: 1555px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #000;
  border-radius: 20px;
  overflow: hidden;
}

.mt-tab-cat {
  width: 25%;

  padding-top: 50px;
  text-align: center;
  border-right: 1px solid #000;
  transition: all 0.2s linear;
}

.mt-tab-cat:last-child {
  border: none;
}

.tab-cat-img {
  padding-left: 35px;
  padding-right: 35px;
  height: 235px;
  object-fit: contain;
  object-position: center;
}

.tab-cat-name {
  padding-top: 15px;
  padding-bottom: 25px;
  margin-top: 45px;
  font-weight: bold;
  font-size: 25px;
  border-top: 1px solid transparent;
  transition: all 0.2s linear;
}

@media (hover: hover) {
  .mt-tab-cat:hover {
    background: var(--light-gray);
  }

  .mt-tab-cat:hover .tab-cat-name {
    border-top-color: #000;
  }
}

/* signature section */

.mt-signatures-content {
  padding-top: 200px;
  padding-bottom: 250px;
  background-color: var(--light-gray);
}

.mt-signatures-content > h4.mt-title {
  padding-left: 85px;
  margin-bottom: 75px;
}

.mt-signature-drinks-container {
  display: flex;
}

.mt-drink-inner-padding {
  padding-left: 85px;
}

.mt-sign-drink {
  width: 25%;
}

.mt-sign-drink .mt-drink-inner-padding:first-child {
  border-bottom: 15px solid #000;
}

.mt-sign-images {
  padding-bottom: 28px;
  overflow: hidden;
  position: relative;
}

.mt-sign-images img {
  display: block;
  max-width: 120px;
  height: 200px;
  object-fit: contain;
  object-position: bottom;
}

.mt-sign-images .espresso-photo {
  max-width: 130px;
}

.mt-sign-images .freddo-photo {
  max-width: 100px;
}

.sign-photo {
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.3s ease-in;
}

@media screen and (min-width: 1200px) {
  @media (hover: hover) {
    .mt-sign-images:hover .sign-photo {
      top: 0;
    }
  }
}

.sign-sketch {
  transition: all 0.3s linear;
}

@media screen and (min-width: 1200px) {
  @media (hover: hover) {
    .mt-sign-images:hover .sign-sketch {
      opacity: 0;
    }
  }
}

.mt-sign-title {
  font-size: 25px;
  font-weight: bold;
  margin-top: 55px;
  margin-bottom: 25px;
}

.mt-mobile-signatures-container {
  display: none;
}
.mt-mob-signature {
  display: none;
}

@media screen and (max-width: 1200px) {
  .mt-drink-inner-padding {
    padding-left: 25px;
  }

  .mt-sign-drink > div:last-child {
    display: none;
  }

  .mt-mobile-signatures-container {
    display: block;
  }

  .mt-sign-drink.show-sign .sign-sketch {
    opacity: 0;
  }

  .mt-sign-drink.show-sign .sign-photo {
    top: 0;
  }
  .mt-mob-signature.show-mob-sign {
    display: block;
  }
  .mt-signatures-content {
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .mt-signatures-content > h4.mt-title {
    text-align: left;
  }
}

@media screen and (max-width: 992px) {
  .mt-sign-drink .mt-drink-inner-padding:first-child {
    border-bottom: 8px solid #000;
  }
  .mt-signatures-content > h4.mt-title {
    padding-left: 0;
    text-align: center;
  }

  .mt-sign-images img {
    height: 160px;
  }
}

@media screen and (max-width: 768px) {
  .mt-signatures-content > h4.mt-title {
    margin-bottom: 0;
  }

  .mt-sign-images img {
    max-width: 70px;
  }
  .mt-sign-images .espresso-photo {
    max-width: 85px;
  }

  .mt-sign-images .freddo-photo {
    max-width: 65px;
  }

  .mt-sign-images {
    padding-bottom: 10px;
  }

  .mt-mob-signature h5 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 560px) {
  .mt-signatures-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mt-sign-images img {
    max-width: 40px;
  }
  .mt-sign-images .espresso-photo {
    max-width: 50px;
  }
  .mt-sign-images .freddo-photo {
    max-width: 40px;
  }

  .mt-sign-images img {
    height: 85px;
  }
  .mt-mob-signature h5 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 16px;
  }
  .mt-sign-desc {
    font-size: 14px;
  }
}

/* social feed */

#mt-social-feed {
  margin-bottom: -20px;
}

.social-title {
  color: #fff;
}

.mt-social-feed-content {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #000;
}

.mt-feed {
  display: flex;
  max-width: 1100px;
  justify-content: space-between;
  gap: 20px;
}

.mt-feed > img {
  max-width: 25%;
}

@media screen and (max-width: 1200px) {
  .mt-social-feed-content {
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
  }

  .mt-feed > img {
    max-width: 22%;
  }
}

/* ====== MENU ====== */

#mt-menu {
  background-color: var(--light-gray);
  padding-top: 140px;
  /* padding-bottom: 140px; */
}

.mt-menu-content {
  /* padding-top: 140px; */
  padding-bottom: 140px;
}
.mt-menu-content h1 {
  margin-bottom: 40px;
}

.mt-menu-content > h1 + p {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 190px;
}

.mt-menu-tabs-control {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  gap: 75px;
}

.mt-menu-tab-control {
  flex: 0 1 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  max-height: 180px;
  padding: 25px 20px 20px 20px;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  cursor: pointer;
}

.mt-menu-tab-control.active {
  background-color: #000;
}

.mt-menu-tab-img {
  /* max-width: 150px; */
  height: 110px;
  object-fit: contain;
  object-position: bottom;
}

.white-img {
  display: none;
}

.mt-menu-tab-control.active .white-img {
  display: block;
}
.mt-menu-tab-control.active .black-img {
  display: none;
}

.coffee-img {
  height: 90px;
  max-width: 120px;
}

.snack-img {
  height: 100px;
}

.bev-img {
  height: 120px;
}

.mt-menu-tab-control h4 {
  text-align: center;
  font-size: 23px;
  font-family: "Climate Crisis", "Roboto", sans-serif;
  margin-top: 15px;
  color: #000;
}

.mt-menu-tab-control.active h4 {
  color: #fff;
}

.black-border {
  height: 25px;
  background-color: #000;
  margin-bottom: 27px;
}

.mt-menu-tab {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 23px;
}

.mt-menu-tab.show-tab {
  display: grid;
}
.mt-menu-tab-mob-title {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  font-size: 25px;
  font-family: "Climate Crisis", "Roboto", sans-serif;
  letter-spacing: 2px;
  font-weight: 500;
}

.mt-menu-item {
  border-radius: 20px;
  overflow: hidden;
  padding: 20px 30px 40px 30px;
  background-color: #fff;
}

.mt-item-img {
  aspect-ratio: 4/3;
  object-fit: contain;
}

.mt-item-name {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-top: 14px;
  margin-bottom: 4px;
}

.mt-item-desc {
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .mt-menu-tab {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 1200px) {
  .mt-menu-tab {
    padding-top: 60px;
    position: relative;
  }

  .mt-menu-tabs-control {
    gap: 25px;
  }

  .mt-menu-tab-mob-title {
    display: block;
  }

  .mt-menu-tab-control h4 {
    display: none;
  }
}

@media screen and (max-width: 992px) {
  .mt-menu-content > h1 + p {
    margin-bottom: 90px;
  }

  .mt-menu-tab-control {
    padding-top: 10px;
  }

  .coffee-img {
    height: 90px;
    max-width: 100px;
  }
  .snack-img {
    height: 85px;
  }
  .bev-img {
    height: 120px;
  }

  .mt-menu-tab {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .mt-menu-content > h1 + p {
    margin-bottom: 60px;
  }

  .mt-menu-tabs-control {
    gap: 10px;
  }

  .mt-menu-tab-control {
    padding: 10px 10px 20px 10px;
    max-height: 135px;
  }

  .coffee-img {
    height: 60px;
    max-width: 85px;
  }
  .snack-img {
    height: 85px;
  }
  .bev-img {
    height: 120px;
  }

  .mt-menu-tab {
    grid-template-columns: repeat(2, 1fr);
  }

  .mt-item-name {
    font-size: 18px;
  }

  .mt-text {
    font-size: 14px;
    line-height: 16px;
  }
}

@media screen and (max-width: 660px) {
  .mt-menu-content > h1 + p {
    margin-bottom: 30px;
  }

  .mt-menu-tab-control img {
    height: auto !important;
    max-width: 50px;
  }

  .mt-menu-tab-control {
    max-height: 90px;
  }
  .mt-menu-tab-control .coffee-img {
    max-width: 55px;
  }
  .mt-menu-tab-control .snack-img {
    max-width: 43px;
  }

  #sandwich-menu-selector img {
    max-width: 80px;
  }

  .mt-item-name {
    font-size: 16px;
  }

  .mt-text {
    font-size: 13px;
    line-height: 15px;
  }

  .mt-bottom-menu-img {
    min-height: 250px;
    object-fit: cover;
  }
}

@media screen and (max-width: 500px) {
  .mt-menu-item {
    padding: 20px 20px 30px 20px;
  }
  .mt-menu-content {
    overflow: hidden;
  }
  .black-border {
    height: 10px;
    position: relative;
  }

  .black-border::before,
  .black-border::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 100%;
    background-color: #000;
  }

  .black-border::after {
    left: unset;
    right: 100%;
  }

  .mt-menu-tabs-control {
    gap: 0;
  }

  .mt-menu-tab-control .coffee-img {
    max-width: 50px;
  }
  .mt-item-name {
    font-size: 15px;
  }
}
@media screen and (max-width: 365px) {
  .mt-menu-tab {
    grid-template-columns: repeat(1, 1fr);
  }

  .mt-menu-item {
    max-width: 195px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ======= OUR TRUCKS =========== */

#mt-trucks-locations {
  background-color: #000;
  padding-top: 150px;
  padding-bottom: 150px;
}

@media screen and (max-width: 768px) {
  #mt-trucks-locations {
    padding-bottom: 95px;
  }
}

#mt-trucks-locations * {
  color: #fff;
}

.mt-trucks-locations-content > h1 + p {
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  max-width: 455px;
}

@media screen and (max-width: 992px) {
  .mt-trucks-locations-content > h1 + p {
    margin-top: 0;
  }
}

.mt-locations-container {
  margin-top: 127px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 860px) {
  .mt-locations-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
  }
}

.mt-map {
  width: 60%;
  padding-right: 33px;
}

@media screen and (max-width: 860px) {
  .mt-map {
    width: 100%;
    padding-right: 0;
  }
}

.mt-spots {
  width: 40%;
  border-left: 10px solid #fff;
  position: relative;
}

@media screen and (max-width: 860px) {
  .mt-spots {
    width: 80%;
    max-width: 285px;
  }
}

.mt-spots::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 17px;
  width: 17px;
  background-color: var(--red);
  border-radius: 50%;
  animation: radar-ping 1.8s ease-out infinite;
}

@keyframes radar-ping {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--red) 70%, transparent);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--red) 0%, transparent);
    opacity: 0.9;
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--red) 0%, transparent);
    opacity: 1;
  }
}

@media screen and (max-width: 992px) {
  .mt-spots::before {
    right: -10px;
  }
}

@media screen and (max-width: 860px) {
  .mt-spots::before {
    display: none;
  }
}

.mt-spots-container {
  max-height: 500px;
  overflow: auto;
  scrollbar-color: #ffffff #1b1b1b;
  scrollbar-width: thin;
  position: relative;
}

/* .mt-spots-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(
    transparent,
    #333333
  );
  pointer-events: none;
} */

.spot-info-title {
  font-family: "Climate Crisis", "Roboto", sans-serif;
  text-align: center;
  font-size: 25px;
  line-height: 18px;
  margin-bottom: 30px;
}

.spot-info-title.mob-title {
  display: none;
}

@media screen and (max-width: 1200px) {
  .spot-info-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .spot-info-title {
    font-size: 19px;
  }
}
@media screen and (max-width: 860px) {
  .spot-info-title {
    display: none;
  }

  .spot-info-title.mob-title {
    display: block;
    position: relative;
    margin-top: 35px;
    font-size: 25px;
    max-width: 235px;
    line-height: 30px;
  }

  .spot-info-title.mob-title::after {
    content: "";
    position: absolute;
    bottom: 4px;
    right: -50px;
    height: 17px;
    width: 17px;
    background-color: var(--red);
    border-radius: 50%;
    animation: radar-ping 1.8s ease-out infinite;
  }
}

@media screen and (max-width: 365px) {
  .spot-info-title.mob-title::after {
    right: -23px;
  }
}

.mt-single-spot {
  padding-left: 39px;
  margin-bottom: 48px;
}

.mt-single-spot:last-child {
  margin-bottom: 0;
}

.mt-single-spot h5 {
  font-size: 25px;
  font-weight: bold;
}

.spot-address {
  margin-top: 18px;
}

@media screen and (max-width: 1200px) {
  .spot-address.mt-text {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .mt-single-spot {
    padding-left: 17px;
    margin-bottom: 37px;
  }

  .mt-single-spot h5 {
    font-size: 20px;
  }
  .spot-address.mt-text {
    margin-top: 14px;
  }
}

.mt-barista-favourite-content {
  padding-top: 130px;
  padding-bottom: 115px;
}

.mt-barista-favourite-content > .mt-barista-mob-padding .mt-text {
  max-width: 455px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}

.mt-barista-slider-section {
  margin-top: 115px;
  display: flex;
}

.mt-barista-slider-control {
  padding-top: 450px;
  width: 10%;
}

.mt-barista-swiper {
  width: 80%;
  max-width: 1270px;
}

.mt-barista-swiper .swiper-slide {
  /* max-width: 400px; */
  position: relative;
}

.barista-hover-images {
  /* border: 1px solid red; */
  overflow: hidden;
  position: absolute;
  top: 6px;
  left: 20px;
  rotate: -15deg;
  height: 170px;
  display: flex;
  align-items: flex-end;
}

.barista-hover-images img {
  height: 170px;
  object-fit: contain;
  transition: all 0.2s linear;
}

.barista-icon {
  opacity: 1;
  max-height: 150px;
}

.barista-hover-photo {
  position: absolute;
  left: 0;
  top: 100%;
}

@media (hover: hover) {
  .barista-slide:hover .barista-icon {
    opacity: 0;
  }
  .barista-slide:hover .barista-hover-photo {
    top: 0;
  }
}

.barista-img {
  margin-top: 86px;
}

.barista-name {
  font-size: 30px;
  margin: 25px 0 25px 0;
}

.barista-drink {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 25px;
}

.barista-text {
  max-width: 240px;
}

.mt-barista-favourite-content .mt-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 240px;
  margin-top: 45px;
}

@media screen and (min-width: 1921px) {
  .mt-barista-swiper {
    max-width: 1470px;
  }
  .mt-barista-slider-control {
    padding-top: 500px;
  }
}

@media screen and (max-width: 1857px) {
  .mt-barista-slider-control {
    width: 12%;
    padding-top: 400px;
  }
  .mt-barista-swiper {
    width: 70%;
    flex: 1;
  }
}

@media screen and (max-width: 1540px) {
  .mt-barista-slider-control {
    padding-top: 350px;
  }
}
@media screen and (max-width: 1400px) {
  .mt-barista-slider-control {
    width: 14%;
    padding-top: 470px;
  }
  .mt-slider-control {
    gap: 25px;
  }
}

@media screen and (max-width: 1200px) {
  .mt-barista-favourite-content {
    padding-top: 75px;
  }

  .mt-barista-favourite-content h2.mt-title {
    max-width: 400px;
    margin: 0 auto;
  }
  .mt-barista-slider-section {
    flex-direction: column-reverse;
    align-items: center;
    overflow: hidden;
    margin-top: 20px;
  }

  .mt-barista-mob-padding {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .mt-barista-swiper {
    width: 100%;
    left: 25%;
  }

  .mt-barista-slider-control {
    padding-top: 40px;
    width: 100%;
    display: flex;
  }
  .mt-barista-slider-control.empty {
    display: none;
  }

  .mt-slider-control {
    margin: 0 auto;
    padding-bottom: 0;
  }

  .barista-hover-images {
    top: -13px;
    left: 21px;
  }
  .barista-hover-images img {
    scale: 0.7;
  }

  .barista-drink {
    text-align: center;
  }
  .barista-text {
    margin-left: auto;
    margin-right: auto;
  }

  .barista-name,
  .barista-drink,
  .barista-text {
    display: none;
  }

  .barista-slide.swiper-slide-active .barista-name,
  .barista-slide.swiper-slide-active .barista-drink,
  .barista-slide.swiper-slide-active .barista-text {
    display: block;
  }

  .barista-slide.swiper-slide-active .barista-hover-photo {
    top: 0;
  }
  .barista-slide.swiper-slide-active .barista-icon {
    opacity: 0;
  }
}

@media screen and (max-width: 768px) {
  .barista-name {
    font-size: 20px !important;
    margin: 25px 0 10px 0;
  }

  .barista-drink {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 605px) {
  .barista-name {
    font-size: 16px !important;
    margin: 25px 0 10px 0;
  }

  .barista-drink {
    font-size: 16px;
  }

  .barista-hover-images {
    left: -15px;
  }

  .barista-hover-images img {
    scale: 0.5;
  }
}

@media screen and (max-width: 400px) {
  .barista-hover-images {
    left: -24px;
  }
  .barista-hover-images img {
    scale: 0.4;
  }
}

/* ==== BRAND ====== */

.mt-image-map {
  position: relative;
}

.main-map-img,
map {
  position: relative;
  z-index: 2;
}

.main-map-img {
  opacity: 1;
}

.mt-visible-truck-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: 0;
}

.mt-visible-truck-img.show-img {
  opacity: 1;
}

.mt-story {
  display: none;
}

.mt-story.show-story {
  display: block;
}

#mt-truck-story {
  background-color: var(--light-gray);
  padding-top: 130px;
  padding-bottom: 130px;
}

.mt-truck-story-content {
  /* padding-top: 130px;
  padding-bottom: 130px; */
  max-width: 1710px;
  margin-left: auto;
  margin-right: auto;
}

.mt-truck-story-content > h1 {
  margin-bottom: 50px;
}
.mt-truck-story-content > h1 + p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.mt-image-map-container {
  margin-top: 150px;
}

@media screen and (max-width: 768px) {
  .mt-image-map-container {
    margin-top: 70px;
  }
}

.mt-story-content {
  position: relative;
  min-height: 400px;
}
.story-1-arrow {
  position: absolute;
  top: -84px;
  left: 253px;
  max-width: 210px;
}

@media screen and (max-width: 1330px) {
  .story-1-arrow {
    left: 17%;
    max-width: 15%;
    top: -13%;
  }
}

@media screen and (max-width: 615px) {
  .story-1-arrow {
    left: 15%;
    top: -7%;
    max-width: 25%;
  }
}

.story-2-arrow {
  position: absolute;
  top: -135px;
  left: 410px;
  max-width: 196px;
  rotate: 19deg;
}

@media screen and (max-width: 1550px) {
  .story-2-arrow {
    left: 30%;
    max-width: 15%;
    top: -11vw;
  }
}

@media screen and (max-width: 615px) {
  .story-2-arrow {
    max-width: 25%;
  }
}

.story-3-arrow {
  position: absolute;
  top: -176px;
  /* left: 410px; */
  max-width: 169px;
  rotate: -11deg;
  right: 420px;
}

@media screen and (max-width: 1550px) {
  .story-3-arrow {
    left: 60%;
    max-width: 15%;
    top: -15vw;
  }
}

@media screen and (max-width: 615px) {
  .story-3-arrow {
    max-width: 20%;
  }
}

.mt-story-year {
  font-size: 57px;
  line-height: 1;
  font-family: "Climate Crisis", "Roboto", sans-serif;
  /* font-family: "Dela Gothiv One", "Roboto", sans-serif; */
  /* -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black; */
  color: #000;
  margin-bottom: 17px;
}

.mt-story-title {
  font-size: 25px;
  font-family: "Climate Crisis", "Roboto", sans-serif;
  margin-bottom: 60px;
}

.mt-story .mt-text {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1200px) {
  .mt-story-content {
    min-height: 0;
  }
}

@media screen and (max-width: 992px) {
  .mt-story-year {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .mt-story-year {
    font-size: 45px;
  }

  .mt-story-title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

@media screen and (max-width: 615px) {
  .mt-story-year {
    font-size: 40px;
    padding-top: 45px;
  }
}

.mt-vision-content {
  padding-top: 100px;
  padding-bottom: 170px;
}

.mt-vision-content > h1 {
  margin-bottom: 50px;
}
.mt-vision-content > h1 + p {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

/* hover images */
.mt-vision-mission-container {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding: 0 65px 0 65px;
  background: #000;
  border-radius: 40px;
  margin-top: 300px;
}

.mt-vm {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.mt-vm-black-bg {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  flex: 1;
}

.mt-vm img {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -100px;
  min-width: 240px;
}

img.mt-vm-hover-img {
  position: absolute;
  width: 75%;
  rotate: 20deg;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  transition: all 0.2s ease-in;
  opacity: 0;
  user-select: none;
}

@media (hover: hover) {
  #mt-sources:hover img.mt-vm-hover-img {
    rotate: 0deg;
    top: -46%;
    z-index: 1;
    transform: translateX(-85%);
    opacity: 1;
  }

  #mt-local:hover img.mt-vm-hover-img {
    rotate: 0deg;
    top: -46%;
    z-index: 1;
    transform: translateX(-85%);
    opacity: 1;
  }
}

/* hand */
img.mt-vm-hover-img.hand-img {
  position: absolute;
  width: 75%;
  /* rotate: 20deg; */
  left: 55%;
  transform: translateX(-50%);
  top: 10%;
  transition: all 0.2s ease-in;
  user-select: none;
}

@media (hover: hover) {
  #mt-vibe:hover img.mt-vm-hover-img {
    top: -50%;
    left: 80%;
    rotate: 10deg;
    z-index: 1;
    opacity: 1;
  }
}

.mt-vm-black-bg {
  background-color: #000;
  position: relative;
  z-index: 4;
}

.mt-vm * {
  color: #fff;
}

.mt-vm-content-wrapper {
  padding-bottom: 30px;
  padding-right: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}

.mt-vm-content-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 95%;
  background-color: var(--light-gray);
}

.mt-vm:last-child .mt-vm-content-wrapper::after {
  display: none;
}

.mt-vm p {
  margin: 30px 0 30px 0;
  font-size: 20px;
  font-weight: bold;
  text-wrap: balance;
}

.mt-vm .mt-button {
  margin: 0;
  border: 1px solid #fff;
  transition: all 0.3s linear;
}

@media (hover: hover) {
  .mt-vm .mt-button:hover {
    color: #000;
    border-color: #000;
  }
}

@media screen and (max-width: 1685px) {
  .mt-vm img {
    min-width: 215px;
  }

  .mt-vm-content-wrapper h4 {
    font-size: 30px !important;
  }
}

@media screen and (max-width: 1440px) {
  .mt-vm img {
    min-width: 180px;
  }

  @media (hover: hover) {
    #mt-sources:hover img.mt-vm-hover-img {
      rotate: 0deg;
      top: -37%;
      z-index: 1;
      transform: translateX(-85%);
      opacity: 1;
    }

    #mt-local:hover img.mt-vm-hover-img {
      rotate: 0deg;
      top: -37%;
      z-index: 1;
      transform: translateX(-85%);
      opacity: 1;
    }

    #mt-vibe:hover img.mt-vm-hover-img {
      top: -40%;
      left: 80%;
      rotate: 10deg;
      z-index: 1;
      opacity: 1;
    }
  }
}

@media screen and (max-width: 1330px) {
  .mt-vision-mission-container {
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 200px;
    display: none;
  }

  .mt-vm {
    width: 100%;
    background-color: #000;
    border-radius: 30px;
    padding: 0 30px;
  }

  .mt-vm img {
    min-width: 0;
    max-width: 200px;
  }

  @media (hover: hover) {
    #mt-vibe:hover img.mt-vm-hover-img {
      top: -21%;
      left: 66%;
    }
  }

  .mt-vm-content-wrapper {
    padding: 0;
    padding-bottom: 40px;
    align-items: center;
  }

  .mt-vm-content-wrapper * {
    text-align: center;
  }

  .mt-vm-content-wrapper::after {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  #mt-truck-story {
    padding-bottom: 50px;
  }

  #mt-vision {
    overflow: hidden;
  }

  #mt-sources img.mt-vm-hover-img {
    rotate: 0deg;
    top: -37%;
    z-index: 1;
    transform: translateX(-85%);
    opacity: 1;
  }

  #mt-local img.mt-vm-hover-img {
    rotate: 0deg;
    top: -37%;
    z-index: 1;
    transform: translateX(-85%);
    opacity: 1;
  }

  #mt-vibe img.mt-vm-hover-img {
    top: -21%;
    left: 66%;
    rotate: 10deg;
    z-index: 1;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .mt-vision-content {
    padding-top: 35px;
    padding-bottom: 70px;
  }

  .mt-vision-mission-container {
    gap: 155px;
    margin-top: 210px;
  }

  .mt-vm img {
    max-width: 180px;
    margin-top: -70px;
  }

  #mt-vibe img.mt-vm-hover-img {
    left: 78%;
  }

  @media (hover: hover) {
    #mt-vibe:hover img.mt-vm-hover-img {
      left: 78%;
    }
  }

  .mt-vm-content-wrapper h4 {
    font-size: 20px !important;
    line-height: 25px;
  }

  .mt-vm p {
    font-size: 14px;
  }
}

/* mobile tabs */

.mt-mob-brand-tabs-container {
  background: #000;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 40px;
  display: none;
}
@media screen and (max-width: 1330px) {
  .mt-mob-brand-tabs-container {
    display: block;
  }
}

.mt-mob-tab-control {
  display: flex;
  gap: 30px;
}

.mt-mob-brand-tab-content {
  display: none;
}

.mt-mob-tab-content-container {
  padding-left: 30px;
  padding-right: 30px;
}

.mt-mob-brand-tab-content.is-active {
  display: block;
}

.mt-mob-tab-img {
  /* transform: translateY(-50%); */
  cursor: pointer;
  position: relative;
  /* overflow: hidden; */
  flex: 1 1 33%;
}

.mt-mob-tab-img img {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  margin-top: -80px;
}

.mob-tab-hovered {
  position: absolute;
  max-width: 100px;
  left: 39%;
  transform: translateX(-50%);
  z-index: -1;
  scale: 0;
  opacity: 0;
  bottom: 0;
  transition: all 0.3s linear;
}

.mob-tab-hovered.hand {
  left: unset;
  right: 0;
}

.mt-mob-tab-img.is-active {
  overflow: visible;
}
.mt-mob-tab-img.is-active .mob-tab-hovered {
  scale: 1;
  opacity: 1;
  bottom: 100%;
}

.mt-mob-tab-img.is-active .mob-tab-hovered.hand {
  right: -85px;
  max-width: 150px;
  bottom: 90%;
}

.mt-mob-tab-img.is-active .mob-tab-hovered.beans {
  max-width: 220px !important;
}

.mt-mob-brand-tab-content * {
  text-align: center;
  color: #fff;
}

.mt-mob-brand-tab-content h4 {
  font-size: 35px;
}

.mt-mob-brand-tab-content .mt-text {
  margin-top: 20px;
  text-wrap: balance;
}

@media screen and (max-width: 768px) {
  .mt-mob-brand-tabs-container {
    margin-top: 130px;
  }
  .mt-mob-brand-tab-content h4 {
    font-size: 25px !important;
    line-height: 30px;
  }

  .mt-mob-tab-img img {
    max-width: 130px;
    margin-top: -60px;
  }
  .mt-mob-tab-img.is-active .mob-tab-hovered.beans {
    max-width: 170px !important;
  }

  .mt-mob-tab-img.is-active .mob-tab-hovered.hand {
    right: -110px;
    bottom: 65%;
  }
}
@media screen and (max-width: 570px) {
  .mt-mob-brand-tabs-container {
    margin-top: 80px;
  }

  .mt-mob-brand-tab-content h4 {
    font-size: 20px !important;
  }

  .mt-mob-tab-img.is-active .mob-tab-hovered.beans {
    bottom: 126%;
    left: 24%;
  }
  .mt-mob-tab-img.is-active .mob-tab-hovered.hand {
    right: -100px;
    bottom: 76%;
  }
}
@media screen and (max-width: 468px) {
  .mt-mob-brand-tabs-container {
    margin-top: 60px;
  }
  .mt-mob-tab-img img {
    max-width: 90px;
    margin-top: -40px;
  }
  .mt-mob-tab-img.is-active .mob-tab-hovered.beans {
    bottom: 100%;
  }
  .mt-mob-tab-img.is-active .mob-tab-hovered.hand {
    right: -80px;
    bottom: 76%;
  }
}
@media screen and (max-width: 390px) {
  .mt-mob-tab-img.is-active .mob-tab-hovered.beans {
    bottom: 120% !important;
  }
}
@media screen and (max-width: 360px) {
  .mt-mob-tab-img.is-active .mob-tab-hovered.beans {
    bottom: 140% !important;
  }
}

/* brand gallery */

.mt-brand-gallery-content {
  padding-top: 325px;
  padding-bottom: 190px;
  position: relative;
}

.mt-brand-gallery-content .mt-grid-gallery-parent {
  z-index: 2;
  position: relative;
}

.mt-brand-gallery-content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 83%;
  background-image: url("https://mugtrucks.gr/wp-content/themes/mugtrucks-theme/assets/images/mt-big-scale-bg.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  z-index: 0;
}

@media screen and (max-width: 1340px) {
  .mt-brand-gallery-content {
    padding-top: 125px;
  }

  .mt-brand-gallery-content::after {
    height: 75%;
  }
}
@media screen and (max-width: 992px) {
  .mt-brand-gallery-content {
    padding-top: 125px;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .mt-brand-gallery-content::after {
    height: 100%;
  }
}
@media screen and (max-width: 580px) {
  .mt-brand-gallery-content {
    padding-top: 40px;
    padding-bottom: 120px;
  }
}
