/*///////////////////////////////////////
/////////////  TYPOGRAPHY  /////////////
//////////////////////////////////////////////////// */
/* h1 {
  font-size: 38px;
  font-weight: 700;
} */

h2 {
  font-size: 24px;
  font-weight: 600;
}

h3 {
  font-size: 18px;
  font-weight: 500;
}

h4 {
  font-size: 16px;
  font-weight: 600;
}

h5 {
  font-size: 14px;
  font-weight: 600;
}

h6 {
  font-size: 14px;
  font-weight: 300;
}

.ratio.ratio-1x1 {
  aspect-ratio: 1;
}
.ratio.ratio-4x3 {
  aspect-ratio: 4/3;
}
.ratio.ratio-16x10 {
  aspect-ratio: 16/10;
}
.ratio.ratio-16x9 {
  aspect-ratio: 16/9;
}
.ratio.ratio-21x9 {
  aspect-ratio: 21/9;
}
.object-fit-cover {
  object-fit: cover;
}
.object-fit-contain {
  object-fit: contain;
}
.cursor-pointer {
  cursor: pointer;
}
/*///////////////////////////////////////
/////////////  OTHER  /////////////
//////////////////////////////////////////////////// */

.filled-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

.event-none {
  pointer-events: none !important;
}

.pm-0 {
  margin: 0 !important;
  padding: 0 !important;
}

.shadow-0 {
  box-shadow: none !important;
}

.padding {
  padding: 20px 0px;
}

.radius-5 {
  border-radius: 5px;
}

/* .column_text {
  word-wrap: break-word;
} */

.no-copy {
  user-select: none;
}

.bold_text {
  font-weight: bold;
}

.error_text {
  color: rgb(var(--danger-color), 1) !important;
}
.gray_text {
  color: rgb(var(--gray-color), 1) !important;
}

.blue_text {
  color: rgb(var(--blue-color), 1);
}

.black_text {
  color: rgb(var(--black-color), 1) !important;
}
.containerCustom {
  width: 100%;
  max-width: 2100px; /* максимально 1800px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== CONTAINER CUSTOM ADAPTIVE ===== */

/* Laptop */
@media (max-width: 1599px) {
  .containerCustom {
    max-width: 1400px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Small laptop */
@media (max-width: 1200px) {
  .containerCustom {
    max-width: 1000px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .containerCustom {
    max-width: 700px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .containerCustom {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* --------------------------------- */

.margin_header {
  /* margin-top: 25px; */
  margin-bottom: 25px;
}

.weight_600 {
  font-weight: 600;
}

.white_text {
  color: rgb(var(--white-color), 1) !important;
}

.gold_text {
  color: rgb(var(--gold-color), 1) !important;
}

.main_text {
  color: rgb(var(--black-color), 1) !important;
}

._hover:hover {
  color: rgb(var(--blue-color), 1) !important;
}

.center_text {
  text-align: center;
}

.big_text {
  font-size: 30px;
}

.small_text {
  font-size: 10px;
}

.gap-20 {
  gap: 20px;
}

.fz-10 {
  font-size: 10px;
}

hr {
  height: 2px;
  outline: none;
  border: none;
  border-radius: 1px;
  color: rgb(var(--main-color), 1);
  background: rgb(var(--main-color), 1);
}
hr.light {
  color: rgb(var(--light-gray-color), 1);
  background: rgb(var(--light-gray-color), 1);
}

.cardWithShadow {
  padding: 35px;
  background-color: rgb(var(--white-color), 1);
  box-shadow: 0 3px 10px 3px rgb(var(--black-color), 0.1);
  border-radius: 5px;
}
.read_columns-3 {
  column-count: 3;
}
.read_columns-2 {
  column-count: 2;
}
@media screen and (max-width: 991px) {
  .read_columns-3 {
    column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .read_columns-3 {
    column-count: 1;
  }
  .read_columns-2 {
    column-count: 1;
  }
}
.justify_text {
  text-align: justify;
}
/*///////////////////////////////////////
/////////////  INPUTS  /////////////
//////////////////////////////////////////////////// */
.styledInput {
  padding: 10px 15px;
  border-radius: 7px;
  outline: none;
  border: none;
  font-size: 16px;
  border: 2px solid rgb(var(--gray-color), 1);
}
.styledInput:focus {
  border: 2px solid rgb(var(--main-color), 1);
}

/*///////////////////////////////////////
/////////////  BUTTONS  /////////////
//////////////////////////////////////////////////// */
.progressbarWithLabel label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  z-index: 1;
}
.styledProgressbar {
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: 0;
  filter: hue-rotate(90deg) brightness(150%) contrast(150%);
  opacity: 0.5;
  margin: 1px 0;
}
.badge {
  background-color: rgb(var(--light-color), 1);
  border-radius: 7px;
  padding: 10px;
  aspect-ratio: 1;
  cursor: help;
}
/*///////////////////////////////////////
/////////////  BUTTONS  /////////////
//////////////////////////////////////////////////// */
/* 
  DEFAULT [btn]
*/
.btn {
  padding: 10px 65px;
  color: rgb(var(--white-color), 1) !important;
  border-radius: 3px;
  outline: none;
  border: 1px solid rgb(var(--white-color), 1);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.btn:hover {
  color: rgb(var(--black-color), 1);
  background-color: rgb(var(--white-color), 1);
}

.btn:disabled {
  filter: saturate(50%);
  opacity: 0.5;
  transition: 1s all ease-in-out;
}

/* 
  LIGHT [light, outline]
*/
.btn.light {
  background-color: rgb(var(--white-color), 1);
}

.btn.light:hover {
  filter: brightness(80%);
}

.btn.light.outline {
  background: none;
  color: rgb(var(--white-color), 1);
}

.btn.light.outline:hover {
  filter: none;
  background-color: rgb(var(--white-color), 1);
  color: rgb(var(--black-color), 1);
}

/* 
  GOLD  [gold, outline, wide]
*/
.btn.gold {
  background-color: rgb(var(--gold-color), 1) !important;
  border-color: rgb(var(--gold-color), 1);
  padding: 15px;
}

.btn.gold:hover {
  color: rgb(var(--gold-color), 1);
  background: none;
}

.btn.gold.wide {
  background-color: rgb(var(--blue-color), 1) !important;
  border-color: rgb(var(--blue-color), 1);
  border-radius: 15px;
  padding: 10px 50px;
}

.btn.gold.wide:hover {
  color: rgb(var(--black-color), 1);
  filter: brightness(80%);
}

.btn.gold.outline {
  color: rgb(var(--gold-color), 1) !important;
  background: none;
}

.btn.gold.outline:hover {
  background-color: rgb(var(--gold-color), 1);
  color: rgb(var(--black-color), 1);
}

/* 
  MAIN [main, outline, wide]
*/
.btn.main {
  color: rgb(var(--white-color), 1) !important;
  background-color: rgb(var(--main-color), 1) !important;
  border-color: rgb(var(--main-color), 1);
  padding: 15px 25px;
  /* position: absolute;
  top: 2.4px;
  right: 0; */
}

.btn.main.active,
.btn.main:hover {
  color: rgb(var(--main-color), 1);
  background: none;
}

.btn.main.wide {
  border-radius: 0;
  background-color: rgb(var(--main-color), 1);
  border-color: rgb(var(--main-color), 1);
  padding: 11.5px 20px;
  border-radius: 10px;
}

.btn.main.wide:hover {
  color: rgb(var(--white-color), 1);
  background-color: rgb(var(--hover-color), 1);
}

.btn.main.outline {
  color: rgb(var(--main-color), 1);
  background: none;
}

.btn.main.outline.active,
.btn.main.outline:hover {
  background-color: rgb(var(--main-color), 1);
  color: rgb(var(--white-color), 1);
}

/*///////////////////////////////////////
/////////////  LIST STYLES  /////////////
//////////////////////////////////////////////////// */
/* GLOBAL */
.container ul li {
  list-style: circle;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.container ul li:before {
  content: "-";
  /* content: '\2014'; */
  font-weight: 800;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}

/* GOLD */
.goldList li {
  list-style: none;
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.goldList li:before {
  content: " " !important;
  font-weight: 800;
  background-color: rgb(var(--gold-color), 1);
  min-width: 10px;
  min-height: 10px;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

/*///////////////////////////////////////
/////////////  VIDEO PLAYER PREVIEW  /////////////
//////////////////////////////////////////////////// */

.p_relative {
  position: relative;
  top: 2px;
  left: 40px;
  right: 60px;
  display: inline-block;
  width: min(50vw, 600px);
  height: min(20vh, 500px);
  aspect-ratio: 1 / 0.5;
  overflow: hidden;
  border-radius: 16px;
}

.back__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* .video_player_prev i.bi-play-circle,
.video_player_prev i.bi-play-circle-fill {
  font-size: 100px;
  z-index: 3;
  color: rgb(var(--white-color), 1);
  opacity: 0.5;
  transition: 0.3s !important;
  animation: bloomPlay 5s infinite alternate ease-in-out;
} */

/* @keyframes bloomPlay {
  50% {
    rotate: 5deg;
    text-shadow: 0 0 15px rgb(var(--white-color), 0.75);
  }

  100% {
    rotate: -5deg;
    text-shadow: 0 0 15px rgb(var(--black-color), 1);
  }
}

.bi-play-circle-fill {
  position: absolute;
  z-index: 1;
}

.video_player_prev .bi-play-circle-fill {
  opacity: 0 !important;
} */

/* .video_player_prev:hover .bi-play-circle-fill {
  opacity: 0.8 !important;
  text-shadow: 0 0 15px rgb(var(--white-color), 0.25),
    0 0 25px rgb(var(--black-color), 1);
  scale: 1.3;
  animation: none;
} */

/* .video_player_prev .bi-play-circle-fill:hover {
  scale: 1.4;
} */
/* 
.video_player_prev img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  filter: brightness(90%) saturate(90%);
  transition: 1s;
} */

.video_player_prev:hover img {
  scale: 1.05;
  filter: brightness(100%) saturate(100%) blur(1px);
}
