/* 1. Скидання відступів і рамок */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Зручний скрол */
html {
  scroll-behavior: smooth;
}

/* 3. Основний шрифт і базовий колір */
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* background: #F5F5F5; */
}

/* 4. Скидаємо посилання */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. Скидаємо списки */
ul,
ol {
  list-style: none;
}

/* 6. Скидаємо картинки */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Текстові елементи */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* 8. Кнопки — прибираємо дефолтні стилі */
button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  cursor: pointer;
}

/* 9. Таблиці */
table {
  border-collapse: collapse;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
  font-size: inherit;
}




.video-wrapper {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;

}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  object-fit: cover;
  /* object-position: center bottom; */
  object-position: 50% 80%;
}

@media (max-width: 1023px) {
  .mobile-1024-none {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .tablet-desktop-none {
    display: none !important;
  }
}

@media (max-width: 1439px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .mobile-only {
    display: none !important;
  }
}

.container {
  margin-left: 18px;
  margin-right: 18px;
  margin-top: 60px;
}

@media (min-width: 1024px) {

  .container,
  .container-overrided {
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 80px;
  }

}
@media (min-width: 1440px) {

  .container,
  .container-overrided {
    margin-left: 80px;
    margin-right: 80px;
    margin-top: 180px;
  }

}
@media (min-width: 1920px) {

  .container,
  .container-overrided {
    margin-left: 120px;
    margin-right: 120px;
    margin-top: 180px;
  }

}
