* {
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
body {
  position: relative;
  font-family: "Poppins", sans-serif;
}
body#main_body_clip {
    height: 100svh;
    overflow: hidden;
}
#main_body_clip::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #ffeb3e;
  clip-path: polygon(55% 0, 100% 0, 100% 100%, 45% 100%);
  z-index: -9999;
}

#menu-btn {
  position: absolute;
  top: 15px;
  right: 100px;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}
button {
  background: transparent;
  cursor: pointer;
}
#menu-btn {
  border: none;
  width: 25px;
  height: 25px;
  font-size: 25px;
  cursor: pointer;
}

header h1 {
  font-size: 30px;
  font-weight: 600;
}

header .slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.close-btn-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  margin: 20px;
}

.nav-el {
  border-bottom: 1px solid #cecece;
  padding: 15px 25px;
}

.slide-menu a,
.slide-menu button {
  text-decoration: none;
  color: black;
  font-size: 17px;
  text-transform: uppercase;
  text-align: left;
}

header .slide-menu.active {
  transform: translateX(0);
}

.slide-menu nav ul {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

#main_body_clip header .social-icons {
  display: flex;
  gap: 20px;
}

#main_body_clip main {
    height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}

#main_body_clip h1 {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
  margin-top: 20px;
  font-style: italic;
  font-weight: 600;
}


#main_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#main_logo img {
  width: 560px;
  height: auto;
}

.contact_personal_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.contact_personal_img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.contact_personal_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.banner_contact_personal {
  background: white;
  width: 310px;
  padding: 16px;
  position: absolute;
  bottom: 10%;
  right: 100px;
}
.contact_personal_name {
  font-size: 11px;
  font-weight: 300;
}
.contact_personal_title {
  font-weight: 500;
  margin-top: 5px;
}
.contact_personal_info {
  width: 60%;
  text-align: left;
}
.contact_personal_info_header {
  text-transform: uppercase;
}
.contact_personal_description {
  margin-top: 32px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}

.contact_personal_btn {
  cursor: pointer;
  margin-top: 35px;
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 300;
  transition: all 300ms ease-in-out;
  text-decoration: none;
}

.contact_personal_btn:hover {
  background-color: #fff;
  color: #000;
}

/* modal */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.order-modal[hidden] {
  display: none;
}
.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 10%, rgba(180, 160, 130, 0.18), transparent 50%), rgba(18, 17, 22, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.order-modal.is-open .order-modal__backdrop {
  opacity: 1;
}
.order-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 30px 36px 32px;
  border-radius: 24px;
  background: linear-gradient(165deg, #ffffff 0%, #f7f5f2 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 28px 80px rgba(20, 18, 28, 0.28);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.order-modal.is-open .order-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
  text-align: left;
}

.order-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(27, 25, 34, 0.05);
  color: #1b1922;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.order-modal__accent {
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: #ffeb3e;
}

.order-modal__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a7a62;
}

.order-modal__title {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b1922;
}
.order-modal__lead {
  margin: 12px 0 0;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(27, 25, 34, 0.62);
}
.order-modal__product {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(27, 25, 34, 0.04);
  border: 1px solid rgba(27, 25, 34, 0.06);
}
.order-modal__product[hidden] {
  display: none;
}
.order-modal__product-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(27, 25, 34, 0.45);
}
.order-modal__product-name {
  font-size: 16px;
  font-weight: 600;
  color: #1b1922;
}
.order-modal__product-price {
  font-size: 14px;
  color: #8a7a62;
}
.order-modal__form {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.order-modal__field {
  display: grid;
  gap: 8px;
}
.order-modal__label {
  font-size: 13px;
  font-weight: 500;
  color: #1b1922;
}
.order-modal__field input,
.order-modal__field textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(27, 25, 34, 0.18);
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: #1b1922;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}
.order-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  border-radius: 14px;
  background: #ffeb3e;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  box-shadow: 0 12px 28px rgba(27, 25, 34, 0.22);
}
.order-modal__note {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(27, 25, 34, 0.48);
}
.banner_video_wrapper {
    box-shadow: 0 32px 44px 0 rgba(195, 148, 19, 0.44);
}
.pr_card_top::after {
    transition: all 0.3s ease-in-out;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
.speedbar .over a {
    color: #0005;
    transition: all .3s ease-in-out;
}
.speedbar .over a:hover {
    color: #FFEB3E;
}


@media only screen and (max-width: 768px) {
  .banner_contact_personal {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5%;
    }
    #main_logo {
        top: 40%;
    }
    #main_body_clip h1 {
        font-size: 20px;
    }
} 

.static_content_wrapper h2 {
  display: block;
  font-size: 1.5em; /* Equals 24px with default 16px base */
  font-weight: bold;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
}
.static_content_wrapper ul {
    padding-left: 20px;
}
.static_content_wrapper ul li{
    list-style: disc;
}


/*map*/
#countries_map {
    height: 100vh;
    filter: grayscale(1);
}

.country-buttons {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.country-button {
    min-width: 150px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.country-button:hover,
.country-button.active {
    background: white;
    color: black;
    transform: translateX(5px);
}

/* Chrome, Edge, Safari */
.all_news_countries_wrapper::-webkit-scrollbar {
    width: 5px;
}

.all_news_countries_wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.all_news_countries_wrapper::-webkit-scrollbar-thumb {
    background-color: #3D3D3D;
    border-radius: 999px;
}

/* footer */
.site-footer {
  margin-top: 80px;
  padding: 72px 0 32px;
  overflow: hidden;
  background: #ffeb3e;
  color: #111;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 64px;
  padding-bottom: 64px;
}

.site-footer__brand {
  max-width: 620px;
}

.site-footer__logo {
  display: inline-block;
  width: clamp(150px, 18vw, 220px);
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__brand p {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.site-footer__cta {
  padding-left: 32px;
  border-left: 1px solid rgba(17, 17, 17, .28);
}

.site-footer__cta > p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(17, 17, 17, .66);
}

.site-footer__cta-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #111;
  color: #111;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  transition: gap .2s ease, opacity .2s ease;
}

.site-footer__cta-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-footer__cta-link:hover,
.site-footer__cta-link:focus-visible {
  gap: 22px;
  opacity: .65;
}

.site-footer__cta-link:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid #111;
  outline-offset: 5px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 17, 17, .28);
}

.site-footer__nav,
.site-footer__meta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-footer__nav a,
.site-footer__social {
  color: #111;
  font-size: 13px;
  font-weight: 500;
  transition: opacity .2s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__social:hover,
.site-footer__social:focus-visible {
  opacity: .58;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__social i {
  font-size: 16px;
}

.site-footer__meta p {
  margin: 0;
  font-size: 12px;
  color: rgba(17, 17, 17, .58);
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__cta-link,
  .site-footer__nav a,
  .site-footer__social {
    transition: none;
  }
}


@media only screen and (max-width: 768px) {
  .banner_contact_personal {
        left: 50%;
        transform: translateX(-50%);
        bottom: 5%;
    }
    #main_logo {
        top: 40%;
    }
    #main_body_clip h1 {
        font-size: 20px;
    }

    .site-footer {
      margin-top: 56px;
      padding: 48px 0 24px;
    }

    .site-footer__top {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 40px;
    }

    .site-footer__cta {
      padding: 24px 0 0;
      border-top: 1px solid rgba(17, 17, 17, .28);
      border-left: 0;
    }

    .site-footer__bottom {
      align-items: flex-start;
    }

    .site-footer__nav {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    .site-footer__meta {
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
      text-align: right;
    }
} 

@media only screen and (max-width: 480px) {
  .site-footer__bottom {
    flex-direction: column;
  }

  .site-footer__meta {
    align-items: flex-start;
    text-align: left;
  }
}

.static_content_wrapper h2 {
  display: block;
  font-size: 1.5em; /* Equals 24px with default 16px base */
  font-weight: bold;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
}
.static_content_wrapper ul {
    padding-left: 20px;
}
.static_content_wrapper ul li{
    list-style: disc;
}