 /*///////////////////////////////////////
/////////////  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  /////////////
//////////////////////////////////////////////////// */
 .p_relative {
   position: relative;
 }

 .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;
 }

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

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

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

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

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

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

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

 .center_text {
   text-align: center;
 }

 .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), .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: .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(--black-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: .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(--gold-color), 1) !important;
   border-color: rgb(var(--gold-color), 1);
   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;
 }

 .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: 10px 50px;
 }

 .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  /////////////
//////////////////////////////////////////////////// */
 .video_player_prev {
   display: block;
   min-height: 300px;
   height: 100%;
   cursor: pointer !important;
 }

 .video_player_prev i.bi-play-circle,
 .video_player_prev i.bi-play-circle-fill {
   position: absolute;
   top: 50%;
   left: 50%;
   translate: -50% -50%;
   font-size: 100px;
   z-index: 1;
   color: rgb(var(--white-color), 1);
   opacity: .5;
   transition: .3s !important;
   animation: bloomPlay 5s infinite alternate ease-in-out;
 }

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

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

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

 .video_player_prev:hover i.bi-play-circle {
   opacity: 0 !important;
   scale: 2;
   transition: .1s !important;
 }

 .video_player_prev:hover .bi-play-circle-fill {
   opacity: .8 !important;
   text-shadow:
     0 0 15px rgb(var(--white-color), .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);
 }