/**
* Project Name: BingeWave UI/UX Styles  - [ V. Beta ] 
* Author: BingeWave Team
* Site: https://www.invirtu.io/
* Last Update: 03/22/2022
*/
/*-------------------------------------------*\
 
   Index
   - Variables
   - General
   - Backgrounds
   - Colors
   - Buttons
   - Sections
   - Navigation
   - Cards
   - Footer
   - Animated text
   - Sliding Logos
\*-------------------------------------------*/

:root {
--principal-color: #00a6ed;/*Just to try #5D5FEF;*/
}
:root {
--secondary-color: #5D5FEF;
}

body{
  font-family: 'Roboto', sans-serif;
  color:inherit;
}

.reset{
  margin:0;
  padding: 0;
  text-transform: none;
  align-items: baseline;
}
.pv-80 {
  padding: 80px 0;
}

.full-height{
  display: block;
  width: auto;
  min-height: 100vh;
}

.d-flex {
  display: flex !important;
}
.inline{
  display: inline;
}
.block {
  display: block;
}
.overflow-hidden {
  overflow: hidden!important;
}
.fs-3{font-size: 3rem!important;}
.fs-4{font-size: 4rem!important;}
.fs-5{font-size: 5rem!important;}

.line-1{
  line-height: 1;
}
.bg-hero {
  background-blend-mode: overlay;
  background-color: #111;
  background-position: center;
  background-size: contain;
  padding: 20ex 0px 10ex 0px;
}
.bg-principal {
  background-color: var(--principal-color);
}
.bg-festival{
  background-image: url(../public_html/img/landing/bg-home2.jpg);
}
.bg-education{
  background-image: url(../img/landing/education-bg1.jpg);
  background-size: cover;
}
.bg-black-squares{
  background-image: url(https://distribution.invirtu.io/img/landing/repeated-square-dark.png);
}
.bg-black-waves{
  background-image: url(../img/landing/papyrus-dark.png);
}
.bg-circle-black{
  background-image: url(../img/landing/circle-black.png);
}
.bg-black{
  background-color: #020202;
}
.bg-dark .section-title h3, .bg-dark .section-title p{
  color: #fff!important;;
}
.color-principal {
  color:var(--principal-color);
}
.color-secundario {
  color:var(--secondary-color);
}
.text-gray {color: gray!important;}

.image-dummy{
  display: block;
  max-width: 100%;
  border: 10px solid #fff;
  background-color: #ccc;
  height: auto;
  border-radius: 5px;
  box-shadow: #1111111f 0px 8px 21px;
}

.divider{
  color: initial;
  padding: 42px 0;;
}
.divider h3{
  font-weight: 600;
  line-height: 2.1;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}


.btn-principal{
  background-color: var(--principal-color);
  color: whitesmoke;
  transition: all ease .3s;
}
.btn-principal:hover{
  color: #fff;
  filter: brightness(75%);
}
.btn-outline-principal {
  color: var(--principal-color);
  border-color: (var(--principal-color))
}
.btn-outline-principal:hover {
  color: #fff;
  background-color:var(--principal-color);
  border-color:var(--principal-color);
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero.my-section {
  padding-top: 11%;
  padding-bottom: 11%;
}
.my-section {
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}
.my-section.bg-dark{
  background-color: #030218  !important;
}
.hero-title{
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.1; 
    margin-bottom: 5px;
    position: relative;
    text-transform: none;
    z-index: 1;
}
.hero-desc{
  margin: 28px auto;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em;
  font-size: 1.4em;
  margin-bottom: 1ex;
} 
.section-title span{
  color: var(--principal-color);
}
.section-title span.secundario{
  color:var(--secondary-color)
}
.section-title{
    font-family: 'Raleway',sans-serif;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
}
.section-title .big-title {
  line-height: 1.1;
  font-size: 2.6rem;
  color: initial;
  font-weight: 800;
  text-transform: none;
}
.section-title .title-desc {
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  font-size: 1.2em;
}
@media (min-width: 1400px) {
  .hero-title {
      font-size: 3.5rem;
  }
}


/*--------------------------------------------------------------
# Navbar 
--------------------------------------------------------------*/
.navbar-bw {
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  background:transparent;
  padding-top: 1.9rem;
  padding-bottom: 1.9rem;

  transition:padding 0.35s ease 0s;
}
.navbar-bw .navbar-brand{
  font-weight: 600;
  color: #282828;
}
.navbar-bw.backdrop{
  top: 0px;
  background: linear-gradient(114deg, rgb(208 175 213 / 50%) 34.93%, rgb(204 180 218 / 50%) 125.03%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);

  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-bw .nav-link{color:rgba(0,0,0,.6);}
.navbar-bw .nav-link:hover,
.navbar-bw .nav-link.active{color: black;}
.navbar-bw .navbar-toggler-icon {
  background-image: url(../img/landing/menu-dots.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.brands{
  text-align: center;
}
.brands-heading {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
/* identical to box height */
}
.brands img{
  margin: auto;
}

/*--------------------------------------------------------------
# Featured Box
--------------------------------------------------------------*/
.features-box h3{
  font-size: 2.25rem;
  font-weight: 400;
} 
.box-highlight {
  padding: 10px 15px;
  display: block;
  border-radius: 4px;
  margin: 0 auto;
  text-align: center;
  border:1px solid #eee;
  border-bottom: 3px solid var(--principal-color);
  width: 100%;;
}
.box-highlight .huge{
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-size: 4.3rem;
  line-height: 112px; 
  align-items: center;
  text-align: center;
  color: var(--principal-color);
}
.box-highlight .subtext {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  /* identical to box height */
  align-items: center;
  text-align: center;
  color: #333;
}

.tip-tittle {
  text-transform: none;
  font-weight: 600;
  font-size: 1em;
  line-height: 2rem;
}
.my-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  width: 2.5rem;
  height: 2.5rem;
}
.my-icon-rounded{
  color: #fff;
    background-color: #28a745;
    border-radius: 50%!important;
}
/*--------------------------------------------------------------
# CARD 
--------------------------------------------------------------*/
.card {
  display: inherit;
}
.card-body{
  flex: 1 1 auto;
  padding: 1.75rem 1.75rem;
}
.card-sm {
  margin: 10px auto;
  max-width: 350px;
}
.card-sm .card-title{
  text-transform: none;
}
.card .text-small{
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.7;
  color: #969696;
}
.card .text-plan{
  color: currentColor;
  text-transform: none;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0!important;
  font-weight: 600;
  line-height: 1.3;
}
.card .price {
  font-family: "CircularStd", sans-serif;
  font-weight: 600;
  /*font-size: 2rem;*/
  letter-spacing: -1px;
}
.card .list-type-02 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.card .list-type-02 li {
  position: relative;
  padding: 3px 0 3px 20px;
}
.card-contact{
background-color: transparent;
}
.card-contact .card-body{
  background-color: rgb(255 255 255 / 27%);
  border: 1px solid transparent;
  padding: 1.75rem 2rem;
}
.card-contact .form-control {
  border-radius: 0;
  color: #ffffff96;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #f5f5f5;
  box-shadow: none;
}
/*--------------------------------------------------------------
# Featured Card  
--------------------------------------------------------------*/
.feature-card {
display: block;
overflow: hidden;
border-radius: 8px;
border: 1px solid #333;
background-color: rgba(255,255,255,.6);
transform: scale(1);
transition:all ease .2s;

}
.feature-card .in {
display:block;
padding: 10px 15px;
text-decoration: none;
opacity: .8;
min-height: 22ex;

transition:all ease-in .3s;
}

.feature-icon {
display: inline-flex;
align-items: center;
justify-content: left;
width: 35px;
border-radius: .75rem;
}
.feature-icon svg{width: 100%;display: block;}
.feature-card h2 {
font-family: 'Roboto', sans-serif;
color: #111;
font-style: normal;
font-weight: bold;
font-size: 32px;
line-height: 37px;
text-transform: none;
/* identical to box height */
transition:all ease-in .2s;
}
.feature-card p {
font-family: Roboto;
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 16px;
color: #333;
}
.feature-card-white{
border-color: white;
background-color: rgba(0,0,0,.6);
color:#fff;
box-shadow: none;

transition: all ease .3s;
}
.feature-card-white h2{
color: #fff;
}
.feature-card-white p{
color:#ccc;
}
/* ---------------- */
    .list-type-02.white li:after {
      color: #ffffff;
    }
    .list-type-02 li:after {
      content: "";
      width: 5px;
      height: 9px;
      position: absolute;
      top: 10px;
      left: 3px;
      color: #2872ff;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
    }
    .subscribe-form form {
      position: relative;
      max-width: 600px;
      margin: 0px auto;
    }
    .subscribe-form input {
      padding: 12px 20px;
      width: 100%;
      color: #3c4858 !important;
      border: 2px solid #ccc;
      outline: none !important;
      padding-right: 160px;
      background-color: rgba(255,255,255,0.8);
      border-radius: 6px;
  
    }
    .subscribe-form button {
      position: absolute;
      top: 1.5px;
      padding: 10px 20px;
      right: 2px;
      outline: none !important;
      position: absolute;
      top: 0;
      padding: 14px 20px;
      right: 0;
      outline: none !important;
      margin: 0 !important;
      border-radius: 0 6px 6px 0;
    }
    .text-white-65 {
      color: rgba(255, 255, 255, 0.65) !important;
    }
    .img-caption {
      font-size: .860rem;
      font-weight: 600;
      margin: 20px auto 10px;
      text-transform: uppercase;
    }
    .img-pic{
      background:#333;
      display:block;
      height: 150px;
      border-radius: 6px;
      margin: 0 auto;
      text-align: center;
    }
    .fa-green{
      color: #28a745!important;
    }
    /* ----------------- */
    
    .list-social{
      display: inherit;
    }
    .list-social li{
      background: white;
      padding: 8px;
      border-radius: 31px;
      width: 30px;
      list-style: none;
      display: inline-block;
      height: 30px;
      color: var(--principal-color)!important;
      line-height: 1em;
    }
    .list-social li>a {color: inherit;}
    /* ###################
       ################### */
/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
footer{
  display: inherit;
  position: relative;
  background: #111;
  color: #aaa;
}
footer a{
  color: #aaa;
  line-height: 1.9;
}
footer a:hover{
  color: #eee;;
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    /*.navbar-bw {background: transparent;}*/
    .hero.my-section {padding-top: 7%; padding-bottom: 7%;}
    .hero-title {font-size: 2.7em; }
    .words {line-height: 1.2;}
    .feature-card h2{color: #333;}
    .feature-card-white h2{
      color: #eee;
    }
    /*--> Hover effects <--*/
    .feature-card:hover{
    transform: scale(0.99);
    border-color: var(--principal-color); 

    }
    .feature-card>.in:hover{
    opacity: 1;
    }
    .feature-card>.in:hover h2{
    color: #111;
    }
    .feature-card-white>.in:hover h2 {color: white;}
    .feature-icon {filter: grayscale(100%);}
    .feature-card:hover .feature-icon {filter: grayscale(0%);}
  }

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    
  }

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .hero-title {font-size: 3.5em; }
  }


  
/*--------------------------------------------------------------
# Word Transition Animation  HomePage
--------------------------------------------------------------*/
.wrapper-words {
  box-sizing: content-box;
  height: 1.2em;
  display: flex;
}
.wrapper-words .words {
  overflow: hidden;
  height: 1.3em;
}
.wrapper-words span{
  display: block;
  height: 100%;
  padding-left: 0.5em;
  color: var(--principal-color);
  animation: spin_words 7s ease-in-out infinite;
}
@keyframes spin_words {
  10% {transform: translateY(-101%);}
  20% {transform: translateY(-100%);}
  30% {transform: translateY(-201%);}
  40%{transform: translateY(-200%);}
  50% {transform: translateY(-301%);}
  60% {transform: translateY(-300%);}
  70% {transform: translateY(-401%);}
  80% {transform: translateY(-400%);}
  90% {transform: translateY(-501%);}
  100% {transform: translateY(-500%);}
}

/*--------------------------------------------------------------
# Sliding Logos  Plugins Page
--------------------------------------------------------------*/
.prllx{
  overflow: hidden;
}
.sliding-logos{
  height:400px ;
  width: 700vw;
  background:url(../../img/landing/logotypes-sliding.svg);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
}

@keyframes slide {
  0% {
    transform: translate3d(0,0,0);
  }
  100%{
    transform: translate3d(-1920px,0,0);
  }
}

.sliding-logos{
  animation: slide 45s linear normal infinite ; 
}

@media (min-width: 1400px) {
  .sliding-logos{
    width: 400vw;
  }
}

/* -------------------------------------------------------------------------- */
/*                                 AI Chat bot                                */
/* -------------------------------------------------------------------------- */
.chat-container {
  position: fixed;
 z-index: 99999;
  bottom: 30px;
  right: 30px;
}

.chat-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 50px;
  width: 180px;
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.chat-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.95);
  border: 4px solid #000;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  width: 80%;
  max-width: 600px;
  max-height: 70%;
  overflow-y: auto;
  z-index: 2147483647;
}

.chat-overlay .input-label {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.chat-messages {
  max-height: 70%;
  overflow-y: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ccc #f0f0f0;
}

  .chat-messages::-webkit-scrollbar {
    width: 8px;
  }

  .chat-messages::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  .chat-messages::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
  }

  .chat-input {
    margin-top: 10px;
  }

  .close-btn {
    position: absolute;
    top: 5px;
    right: 8px;
    cursor: pointer;
    font-size: 30px;
  }
