.mch_wrapper * {
  box-sizing: border-box;
  font-family: foxtrot, sans-serif, serif;
  line-height: 1.5;
}

.mch_image {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.mch_desktop {
  display: block;
}

.mch_mobile {
  display: none;
}

.mch_sup {
  display: inline;
  font-size: clamp(8px, 1vw, 14px);
  vertical-align: super;
}

.mch_video {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.mch_text-bold {
  font-weight: 700;
}

.mch_title {
  font-size: clamp(18px, 2.5vw, 40px);
}

.mch_subtitle {
  font-size: clamp(16px, 2vw, 30px);
}

.mch_caption {
  font-size: clamp(14px, 1.5vw, 26px);
}

.mch_empty {
  font-size: clamp(12px, 1.2vw, 22px);
}

.mch_section {
  width: 100%;
  position: relative;
}

.thomas-container {
  max-width: 1360px;
  margin: 0 auto;
  background: #01b4a5;
}

.thomas-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.thomas-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: center / cover no-repeat #fff;
  z-index: 1;
  opacity: 0;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-animation: fadeInBg 1.2s ease forwards;
  animation: fadeInBg 1.2s ease forwards;
}

@-webkit-keyframes fadeInBg {
  from {
    opacity: 0;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes fadeInBg {
  from {
    opacity: 0;
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ✅ Добавлено */

.thomas-logo {
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  -webkit-animation: fadeInLogo 1.2s ease forwards;
  animation: fadeInLogo 1.2s ease forwards;
}

.thomas-logo img {
  width: 220px;
  height: auto;
  display: block;
}

.thomas-white-text {
  padding: 50px 0 50px;
  text-align: center;
}

.thomas-white-text-h2 {
  font-family: 'PT Sans', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: #a9fffa;
  line-height: 1.3;
}

@-webkit-keyframes fadeInLogo {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -20px);
    transform: translate(-50%, -20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -20px);
    transform: translate(-50%, -20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

.thomas-ListItem {
  position: relative;
  display: block;
  text-align: left;
  padding: 0 0 13px 20px;
}

.thomas-ListItem:before {
  content: " ";
  left: 0;
  top: 8px;
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: #07a398;
  border-radius: 50%;
  display: inline-block;
}

.thomas-title {
  position: absolute;
  z-index: 2;
  max-width: 75%;
  padding: 5% 3%;
  border-radius: 0 2rem 2rem 0;
  background: rgba(0, 0, 0, 0.6);
  color: #d5caba;
  border-top: 3px solid rgba(0, 161, 169, 0.8);
  border-right: 3px solid rgba(0, 161, 169, 0.8);
  border-bottom: 3px solid rgba(0, 161, 169, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  will-change: top, bottom, transform;
  transition: top 360ms ease, bottom 360ms ease, -webkit-transform 360ms ease;
  transition: top 360ms ease, bottom 360ms ease, transform 360ms ease;
  transition: top 360ms ease, bottom 360ms ease, transform 360ms ease, -webkit-transform 360ms ease;
}

.align-top .thomas-title {
  top: calc(var(--offset-y, 0));
  -webkit-transform: translateY(0);
  transform: translateY(0);
  bottom: auto;
}

.align-center .thomas-title {
  top: calc(50% + var(--offset-y, 0));
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  bottom: auto;
}

.align-bottom .thomas-title {
  bottom: calc(var(--offset-y, 0));
  -webkit-transform: translateY(0);
  transform: translateY(0);
  top: auto;
}

.thomas-title__inner {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-animation: fadeInInner 0.9s ease forwards;
  animation: fadeInInner 0.9s ease forwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.thomas-title__headline {
  display: block;
  font-family: 'PT Sans', sans-serif;
  font-size: clamp(22px, 3vw, 45px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.45em;
  color: #01b4a5;
  opacity: 0;
  -webkit-transform: translateY(18px);
  transform: translateY(18px);
  -webkit-animation: fadeInPart 0.8s ease forwards;
  animation: fadeInPart 0.8s ease forwards;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.thomas-title__desc {
  display: block;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 200;
  line-height: 1.4;
  color: #ffffff;
  opacity: 0;
  -webkit-transform: translateY(18px);
  transform: translateY(18px);
  -webkit-animation: fadeInPart 0.8s ease forwards;
  animation: fadeInPart 0.8s ease forwards;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

@-webkit-keyframes fadeInInner {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInInner {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInPart {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInPart {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.thomas-cordlessbx7-1 .thomas-bg {
  background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-1-1500x1080-ua.png');
}

.thomas-cordlessbx7-2 .thomas-bg {
  background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-2-1500x1080.png');
}

.thomas-cordlessbx7-3 .thomas-bg {
  background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-3-1500x1080.png');
}

.thomas-cordlessbx7-4 .thomas-bg {
  background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-4-1500x1080.png');
}

.thomas-cordlessbx7-5 .thomas-bg {
  background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-5-1500x1080.png');
}

.thomas-cordlessbx7-6 .thomas-bg {
  background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-6-1500x1080.png');
}

.thomas-cordlessbx7-7 .thomas-bg {
  background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-7-1500x1080.png');
}

.thomas-cordlessbx7-1 {
  --offset-y: 25%;
}

.thomas-cordlessbx7-2 {
  --offset-y: 20%;
}

.thomas-cordlessbx7-3 {
  --offset-y: 0px;
}

.thomas-cordlessbx7-4 {
  --offset-y: 22%;
}

.thomas-cordlessbx7-5 {
  --offset-y: -9%;
}

.thomas-cordlessbx7-6 {
  --offset-y: 22%;
}

.thomas-cordlessbx7-7 {
  --offset-y: 2%;
}

@media (max-width: 1000px) {
  .thomas-title {
    max-width: 99%;
    padding: 5% 4%;
    border-radius: 0 1.5rem 1.5rem 0;
    left: var(--title-left, 0%);
  }

  .thomas-title__headline img {
    content: url("https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/thomas-section1-point-sm.png");
  }

  .thomas-logo {
    top: 20px;
  }

  .thomas-logo img {
    width: 120px;
  }

  .thomas-cordlessbx7-1 {
    --offset-y: 15%;
  }

  .thomas-cordlessbx7-2 {
    --offset-y: 23%;
  }

  .thomas-cordlessbx7-3 {
    --offset-y: 0px;
  }

  .thomas-cordlessbx7-4 {
    --offset-y: 25%;
  }

  .thomas-cordlessbx7-5 {
    --offset-y: 25%;
  }

  .thomas-cordlessbx7-6 {
    --offset-y: 23%;
  }

  .thomas-cordlessbx7-7 {
    --offset-y: 0px;
  }

  .thomas-cordlessbx7-1 .thomas-bg {
    background-image: url(https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-1-1000x1050-ua.png);
  }

  .thomas-cordlessbx7-2 .thomas-bg {
    background-image: url(https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-2-1000x1050.png);
  }

  .thomas-cordlessbx7-3 .thomas-bg {
    background-image: url(https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-3-1000x1050.png);
  }

  .thomas-cordlessbx7-4 .thomas-bg {
    background-image: url(https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-4-1000x1050.png);
  }

  .thomas-cordlessbx7-5 .thomas-bg {
    background-image: url(https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-5-1000x1050.png);
  }

  .thomas-cordlessbx7-6 .thomas-bg {
    background-image: url(https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-6-1000x1050.png);
  }

  .thomas-cordlessbx7-7 .thomas-bg {
    background-image: url(https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-7-1000x1050.png);
  }
}

@media (max-width: 1000px) and (orientation: landscape) {
  .thomas-cordlessbx7-1 .thomas-bg {
    background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-1-1280x720.png');
  }

  .thomas-cordlessbx7-2 .thomas-bg {
    background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-2-1500x1080.png');
  }

  .thomas-cordlessbx7-3 .thomas-bg {
    background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-3-1500x1080.png');
  }

  .thomas-cordlessbx7-4 .thomas-bg {
    background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-4-1500x1080.png');
  }

  .thomas-cordlessbx7-5 .thomas-bg {
    background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-5-1500x1080.png');
  }

  .thomas-cordlessbx7-6 .thomas-bg {
    background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-6-1500x1080.png');
  }

  .thomas-cordlessbx7-7 .thomas-bg {
    background-image: url('https://files.foxtrot.com.ua/StaticContent/Ext/foxtrot/vac/thomas/BX7/image/cordlessbx7-7-1500x1080.png');
  }

  .thomas-cordlessbx7-1 {
    --offset-y: 0px;
  }

  .thomas-cordlessbx7-2 {
    --offset-y: 0px;
  }

  .thomas-cordlessbx7-3 {
    --offset-y: 0px;
  }

  .thomas-cordlessbx7-4 {
    --offset-y: 0px;
  }

  .thomas-cordlessbx7-5 {
    --offset-y: 0px;
  }

  .thomas-cordlessbx7-6 {
    --offset-y: 0px;
  }

  .thomas-cordlessbx7-7 {
    --offset-y: 0px;
  }
}

@media screen and (max-width: 640px) {
  .mch_desktop {
    display: none;
  }

  .mch_mobile {
    display: block;
  }
}

@media screen and (max-width: 375px) {
  .mch_image-container-flex {
    display: flex;
  }

  .mch_image-container-flex > p {
    display: flex;
  }

  .mch_image--cover {
    -o-object-fit: cover;
    object-fit: cover;
  }
}