* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: "Kanit", sans-serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Russo One", sans-serif;
  margin: 0;
  font-weight: 300;
}

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

ul.reset,
ol.reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

p,
li {
  font-weight: 300;
  line-height: 140%;
}

.container {
  max-width: 1270px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 50px;
  padding-left: clamp(24px, 3.4722222222vw, 50px);
  padding-right: 50px;
  padding-right: clamp(24px, 3.4722222222vw, 50px);
}

.container--xl {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 50px;
  padding-left: clamp(24px, 3.4722222222vw, 50px);
  padding-right: 50px;
  padding-right: clamp(24px, 3.4722222222vw, 50px);
}

.container--full {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 50px;
  padding-left: clamp(24px, 3.4722222222vw, 50px);
  padding-right: 50px;
  padding-right: clamp(24px, 3.4722222222vw, 50px);
  max-width: 2000px;
}

.btn {
  padding: 12px 28px;
  padding: clamp(8px, 0.8333333333vw, 12px) clamp(20px, 1.9444444444vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: none;
  font-size: 1rem;
  font-family: "Kanit", sans-serif;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  color: #100D08;
  background: #ffd600;
  background: linear-gradient(90deg, rgb(255, 214, 0) 0%, rgb(255, 193, 23) 100%);
  transition: backgroud 0.2s ease-in-out;
}
.btn--primary:hover {
  background: linear-gradient(90deg, rgb(255, 193, 23) 0%, rgb(255, 214, 0) 100%);
}

.btn-alt {
  display: flex;
  gap: 2px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  border: 1px solid #fff;
  padding: 10px 20px;
  position: relative;
}
.btn-alt::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 5;
}
.btn-alt > span {
  position: relative;
  z-index: 10;
  display: block;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.btn-alt svg {
  position: relative;
  z-index: 10;
  width: 28px;
  fill: #fff;
  transition: all 0.3s ease-in-out;
}
.btn-alt svg * {
  fill: #fff;
}
.btn-alt:hover::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  z-index: 5;
}
.btn-alt:hover > span {
  color: #100D08;
}
.btn-alt:hover svg {
  transform: rotate(-45deg);
  fill: #100D08;
}
.btn-alt:hover svg * {
  fill: #100D08;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  color: #fff;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}
.nav.active {
  background-color: #100D08;
}
.nav.active .nav__grid {
  padding-top: 28px;
  padding-bottom: 28px;
}
.nav__grid {
  position: relative;
  padding-top: 50px;
  padding-top: clamp(24px, 3.4722222222vw, 50px);
  padding-bottom: 50px;
  padding-bottom: clamp(24px, 3.4722222222vw, 50px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.nav__logo {
  width: 200px;
  width: clamp(140px, 13.8888888889vw, 200px);
}
.nav__menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nav__menu-list {
  display: flex;
  gap: 40px;
  font-weight: 300;
  transition: color 0.2s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .nav__menu-list {
    display: none;
  }
}
.nav__menu-list__item {
  position: relative;
  display: block;
  font-size: 18px;
  font-size: clamp(16px, 1.25vw, 18px);
}
.nav__menu-list__item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.nav__menu-list__item:hover::after {
  width: 100%;
}

.header {
  position: relative;
  color: #fff;
}
.header__cta-group {
  display: flex;
  align-items: center;
  gap: 16px 32px;
  flex-wrap: wrap;
}
.header__cta-group .link {
  position: relative;
  z-index: 10;
  display: block;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0px;
  white-space: nowrap;
}
.header__cta-group .link::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 0%;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.header__cta-group .link:hover::before {
  width: 100%;
}
.header__video-background {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.header video::-webkit-media-controls, .header video::-moz-media-controls, .header video::-o-media-controls, .header video::-ms-media-controls {
  display: none !important;
}
.header__content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header__content-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 35vh;
  padding-bottom: 15vh;
}
@media screen and (max-width: 580px) {
  .header__content-wrapper {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
.header__content__title {
  font-size: 22px;
  font-size: clamp(18px, 1.6666666667vw, 24px);
  font-family: "Kanit", sans-serif;
  letter-spacing: 0.2px;
  margin: 0 0 24px;
  background: linear-gradient(90deg, rgb(255, 214, 0) 0%, rgb(255, 193, 23) 100%);
  color: #100D08;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 100%;
  padding: 12px 24px;
}
.header__content__title strong {
  font-weight: 500;
}
.header__content__subtitle {
  font-size: 48px;
  font-size: clamp(24px, 3.3333333333vw, 48px);
  max-width: 768px;
  margin: 0 0 8px;
}
.header__content__text {
  max-width: 600px;
  font-weight: 200;
  margin-bottom: 50px;
}
.header__rental p {
  font-size: 22px;
  font-size: clamp(18px, 1.5277777778vw, 22px);
  color: #fff;
  margin: 0;
  line-height: 140%;
  margin-top: 24px;
  margin-bottom: 40px;
  max-width: 600px;
}
.header__rental p > span {
  font-weight: 500;
  color: #ffd600;
}

.intro {
  padding-top: 120px;
  padding-top: clamp(64px, 8.3333333333vw, 120px);
  padding-bottom: 0;
}
.intro__header {
  margin-bottom: 64px;
}
.intro__header__title {
  font-size: 2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  white-space: pre-line;
  line-height: 125%;
}
.intro__header__text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-weight: 400;
  max-width: 600px;
  line-height: 140%;
}
.intro__slider__slide__image {
  width: 100%;
}
.intro__slider__slide__content {
  margin-top: 16px;
}
.intro__slider__slide__content__number {
  font-family: "Russo One", sans-serif;
  width: 36px;
  height: 36px;
  background-color: #ffd600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.intro__slider__slide__content__title {
  font-size: 1.2rem;
  margin: 0 0 8px;
  text-align: center;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  .intro__slider__slide__content__title {
    white-space: normal;
  }
}
.intro__slider__slide__content__text {
  margin: 0;
  font-size: 15px;
  text-align: center;
}
.intro__slider .swiper-pagination {
  margin-top: 50px;
  position: relative !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.intro__slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #100D08;
  width: 12px;
  height: 12px;
}

.businessplan {
  display: none;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .businessplan {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.businessplan__image-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.businessplan__image {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 80px);
  height: 100%;
  background-image: url("./images/image-1.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .businessplan__image {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    height: 400px;
  }
}
.businessplan__content {
  position: relative;
  z-index: 20;
}
.businessplan__content__title {
  font-size: 1.8rem;
  line-height: 140%;
  margin: 0 0 32px;
}
.businessplan__content__text {
  font-size: 18px;
  font-size: clamp(16px, 1.25vw, 18px);
}
.businessplan__content__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .businessplan__content__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.businessplan__content__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.businessplan__content__item {
  display: grid;
  grid-template-columns: 36px auto;
  gap: 20px;
}
.businessplan__content__item__num {
  font-family: "Russo One", sans-serif;
  width: 36px;
  height: 36px;
  background-color: #ffd600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.businessplan__content__item__text {
  margin-top: 0;
  margin-bottom: 0;
}

.pros {
  padding-top: 64px;
  padding-top: clamp(0px, 5.5555555556vw, 80px);
  padding-bottom: 64px;
  padding-bottom: clamp(0px, 5.5555555556vw, 80px);
}
.pros__header {
  margin-bottom: 64px;
  margin-bottom: clamp(32px, 4.4444444444vw, 64px);
}
.pros__header__title {
  font-size: 32px;
  font-size: clamp(24px, 2.2222222222vw, 32px);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  white-space: pre-line;
  line-height: 125%;
}
.pros__header__text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  font-weight: 300;
  max-width: 600px;
  line-height: 140%;
}
.pros__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .pros__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .pros__grid {
    grid-template-columns: 1fr;
  }
}
.pros__item {
  background-color: #f9f9f9;
  padding: 40px;
  padding: clamp(20px, 2.7777777778vw, 40px);
}
.pros__item:nth-of-type(2n) {
  background-color: #f5f5f5;
}
.pros__item__image {
  width: 128px;
  height: 128px;
  margin: 0 0 32px;
}
.pros__item__title {
  font-size: 20px;
}
.pros__item__text {
  font-size: 14px;
  font-size: clamp(13px, 0.9722222222vw, 14px);
}

.machine-list {
  padding-top: 64px;
  padding-top: clamp(0px, 5.5555555556vw, 80px);
  padding-bottom: 64px;
  padding-bottom: clamp(0px, 5.5555555556vw, 80px);
}
.machine-list__header {
  margin-bottom: 64px;
}
.machine-list__header__title {
  font-size: 32px;
  font-size: clamp(24px, 2.2222222222vw, 32px);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  white-space: pre-line;
  line-height: 125%;
}
.machine-list__header__text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  font-weight: 300;
  max-width: 600px;
  line-height: 140%;
}
.machine-list__slider__item__content {
  margin-top: 12px;
}
.machine-list__slider__item__content__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}
.machine-list__slider__item__content__badges__item {
  font-size: 0.8rem;
  padding: 2px 8px;
  background-color: #e2e2e2;
  border-radius: 4px;
}
.machine-list__slider__item__content__badges__item[data-type=wynajem] {
  background-color: #ffd600;
  color: #000;
}
.machine-list__slider__item__content__badges__item[data-type=bdo] {
  background-color: #42784b;
  color: #ffffff;
}
.machine-list__slider__item__content__badges__item[data-type=wynajem] {
  background-color: #ffd600;
  color: #000;
}
.machine-list__slider__item__content__badges__title {
  margin: 4px 0 4px;
  font-size: 14px;
  font-weight: 300;
}
.machine-list__slider__item__title .series {
  display: block;
  font-family: "Kanit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.machine-list__slider__item__title .model {
  display: block;
  font-size: 1.5rem;
}
.machine-list__slider .swiper-pagination {
  margin-top: 50px;
  position: relative !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.machine-list__slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #100D08;
  width: 12px;
  height: 12px;
}

.contact-form {
  padding-top: 80px;
  padding-top: clamp(40px, 5.5555555556vw, 80px);
  padding-bottom: 80px;
  padding-bottom: clamp(40px, 5.5555555556vw, 80px);
  background-color: #f3f3f3;
}
.contact-form__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .contact-form__grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
  }
}
@media screen and (max-width: 768px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-form__contact-wrapper {
  padding: 32px 24px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .contact-form__contact-wrapper {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact-form__contact__title {
  font-size: 22px;
  font-size: clamp(20px, 1.5277777778vw, 22px);
  text-align: center;
}
.contact-form__contact__avatar {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  margin-bottom: 12px;
  margin-top: 24px;
}
.contact-form__contact__person {
  margin-bottom: 12px;
}
.contact-form__contact__person__title {
  font-size: 24px;
  font-size: clamp(22px, 1.6666666667vw, 24px);
  text-align: center;
  margin: 0;
}
.contact-form__contact__person__role {
  text-align: center;
  font-weight: 400;
  font-family: "Kanit", sans-serif;
  margin: 0;
  line-height: 100%;
}
.contact-form__contact__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.contact-form__contact__cta-group {
  width: 100%;
  margin-top: 16px;
}
.contact-form__contact__cta {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 300;
  padding: 10px;
  line-height: 100%;
}
.contact-form__contact__cta--primary {
  background-color: #100D08;
  color: #fff;
  border: 1px solid #100D08;
  margin-bottom: 8px;
}
.contact-form__contact__cta--secondary {
  border: 1px solid #100D08;
}
.contact-form__form__title {
  font-size: 24px;
  font-size: clamp(18px, 1.6666666667vw, 24px);
  margin: 0 0 24px;
}
.contact-form__form__row {
  display: grid;
  margin-bottom: 12px;
}
.contact-form__form__row--1 {
  grid-template-columns: 1fr;
  gap: 12px;
}
.contact-form__form__row--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 580px) {
  .contact-form__form__row--2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.contact-form__form__cell label span {
  display: block;
  font-size: 15px;
  font-weight: 300;
  display: block;
  margin-bottom: 4px;
}
.contact-form__form__cell input[type=text],
.contact-form__form__cell input[type=tel],
.contact-form__form__cell input[type=email] {
  width: 100%;
  border-radius: 0;
  padding: 8px;
  border: 1px solid #c0c0c0;
}
.contact-form__form__acceptance:first-of-type {
  margin-top: 12px;
  margin-bottom: 6px;
}
.contact-form__form__acceptance:last-of-type {
  margin-bottom: 18px;
}
.contact-form__form__acceptance p {
  margin: 0;
  font-size: 15px;
  font-size: clamp(13px, 1.0416666667vw, 15px);
  line-height: 110%;
}
.contact-form__form__acceptance__grid {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-form__form__submit {
  width: -moz-fit-content !important;
  width: fit-content !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0.6rem 1.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  color: #100D08 !important;
  font-weight: 400;
  background: #ffd600 !important;
  background: linear-gradient(90deg, rgb(255, 214, 0) 0%, rgb(255, 193, 23) 100%) !important;
  transition: backgroud 0.2s ease-in-out !important;
}
.contact-form__form__submit:hover {
  background: linear-gradient(90deg, rgb(255, 193, 23) 0%, rgb(255, 214, 0) 100%) !important;
}

.distributors {
  padding-top: 120px;
  padding-top: clamp(0px, 8.3333333333vw, 120px);
  padding-bottom: 120px;
  padding-bottom: clamp(64px, 8.3333333333vw, 120px);
}
.distributors__grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
}
.distributors__header__title {
  text-align: center;
  font-size: 28px;
  font-size: clamp(20px, 1.9444444444vw, 28px);
  max-width: 992px;
  margin-left: auto;
  margin-right: auto;
}
.distributors__header__text {
  text-align: center;
  font-size: 1rem;
  font-size: clamp(14px, 1.1111111111vw, 16px);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.master-box {
  background-image: url("./images/mb-header-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-top: clamp(40px, 5.5555555556vw, 80px);
  padding-bottom: 80px;
  padding-bottom: clamp(40px, 5.5555555556vw, 80px);
  min-height: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .master-box {
    background-image: unset;
    background-position: unset;
    background-repeat: unset;
    background-size: unset;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.master-box__image {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 80px);
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .master-box__image {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    height: auto;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    z-index: unset;
  }
}
.master-box__content-wrapper {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .master-box__content-wrapper {
    z-index: unset;
  }
}
.master-box__content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .master-box__content {
    width: 100%;
  }
}
.master-box__content__title {
  font-size: 1.8rem;
  line-height: 140%;
  margin: 0 0 16px;
}
.master-box__content__text {
  font-size: 18px;
  font-size: clamp(16px, 1.1805555556vw, 17px);
  margin: 0 0 40px;
}

.ambassador {
  padding-top: 80px;
  padding-top: clamp(40px, 5.5555555556vw, 80px);
  padding-bottom: 80px;
  padding-bottom: clamp(40px, 5.5555555556vw, 80px);
  position: relative;
  background-color: #1a1a1a;
}
@media screen and (max-width: 580px) {
  .ambassador {
    padding-bottom: 0;
  }
}
.ambassador__image-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.ambassador__image {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% - 80px);
  height: 100%;
  background-image: url("./images/mechanik-post-myjki.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .ambassador__image {
    width: calc(45% - 80px);
  }
}
@media screen and (max-width: 580px) {
  .ambassador__image {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    height: 400px;
    margin-top: 64px;
  }
}
.ambassador__content {
  position: relative;
  z-index: 20;
  color: #fff;
}
.ambassador__content__title {
  font-size: 28px;
  font-size: clamp(20px, 1.9444444444vw, 28px);
  line-height: 140%;
  margin: 0 0 24px;
}
.ambassador__content__text {
  font-size: 1.1rem;
}
.ambassador__content__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .ambassador__content__grid {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media screen and (max-width: 580px) {
  .ambassador__content__grid {
    grid-template-columns: 1fr;
  }
}
.ambassador__content__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.ambassador__content__item {
  display: grid;
  grid-template-columns: 36px auto;
  gap: 20px;
}
.ambassador__content__item__num {
  font-family: "Russo One", sans-serif;
  width: 36px;
  height: 36px;
  background-color: #ffd600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ambassador__content__item__text {
  margin-top: 0;
  margin-bottom: 0;
}
.ambassador__content__item p {
  font-size: 1rem;
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
.ambassador__content .btn {
  margin-top: 32px;
}

.footer {
  background-color: #100D08;
  padding-top: 64px;
  padding-top: clamp(32px, 4.4444444444vw, 64px);
  padding-bottom: 64px;
  padding-bottom: clamp(32px, 4.4444444444vw, 64px);
  color: #fff;
}
.footer__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer__logo {
  width: 200px;
}
.footer__menu {
  display: flex;
  flex-direction: row;
  gap: 32px;
  font-weight: 300;
}
@media screen and (max-width: 680px) {
  .footer__menu {
    flex-direction: column;
    text-align: center;
  }
}
.footer__legal {
  font-weight: 200;
}

.badge-mip {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .badge-mip {
    bottom: 12px;
    left: 12px;
  }
}
.badge-mip__content {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f5f5f5;
  border: 1px solid #c0c0c0;
  padding: 6px;
  overflow: hidden;
  border-radius: 4px;
}
.badge-mip__content img {
  display: block;
  width: 16px;
  height: 16px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5px;
}
.badge-mip__content span {
  display: inline-block;
  line-height: 100%;
  white-space: nowrap;
  font-size: 15px;
  margin: 0;
}

.businessplan-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.businessplan-popup.active {
  opacity: 1;
  pointer-events: all;
}
.businessplan-popup__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.businessplan-popup__container {
  width: 90%;
  max-width: 1200px;
  background-color: #fff;
  position: relative;
}
.businessplan-popup__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}
.businessplan-popup__content {
  padding: 40px;
}
.businessplan-popup__content__title {
  margin-bottom: 16px;
  font-size: 1.6rem;
  line-height: 140%;
}
.businessplan-popup__content__text {
  font-size: 1.05rem;
  font-weight: 400;
}
.businessplan-popup__image {
  height: 100%;
  background-image: url("https://placehold.co/1200");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.businessplan-popup__form label {
  display: block;
  margin-bottom: 10px;
}
.businessplan-popup__form label > span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.businessplan-popup__form label input[type=text],
.businessplan-popup__form label input[type=email] {
  width: 100%;
  border: 1px solid #c2c2c2;
  font-family: "Kanit", sans-serif;
  padding: 8px;
  font-size: 0.9rem;
}
.businessplan-popup__form .acceptance-text {
  display: inline-block;
  font-size: 0.7rem;
  line-height: 140%;
  text-align: justify;
}
.businessplan-popup__form .legal-text {
  display: inline-block;
  font-size: 0.7rem;
  line-height: 140%;
  margin-top: 24px;
  text-align: justify;
}
.businessplan-popup__form .acceptance-grid {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 16px;
}
.businessplan-popup__form .btn {
  margin-top: 12px;
}
.businessplan-popup__close {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(145, 145, 145, 0.4588235294);
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.businessplan-popup__close > svg {
  width: 32px;
  fill: #000;
}
.businessplan-popup__close > svg * {
  fill: #000;
}

.color-red {
  color: #b81414;
}/*# sourceMappingURL=style.css.map */