/* ---- Small devices (landscape phones, 576px and up) ---- */
/* ---- Class infix: sm */
/* ---- Dimension ≥ 576px */

@media (min-width: 576px) {

  .hero-picture svg .bgd{
    transition: var(--transition);
    transform: scaleX(1) translateX(0);
  }
  
  .hero-picture svg .circles{
    transition: var(--transition);
    transform: scale(1) translateX(0);
  }
  
  .hero-picture svg .ellipse-1{
    transition: var(--transition);
    fill-opacity: 0;
  }
  
  .hero-picture svg .ellipse-2{
    transition: var(--transition);
    fill-opacity: 0;
  }
  
  .hero-picture svg .bubble-1{
    transition: var(--transition);
    transform: scale(1) translateX(0);
    transform-origin: center;
  }

  .hero-picture svg .bubble-2{
    transition: var(--transition);
    transform: scale(1);
    transform-origin: center;
  }
}

/* ---- Medium devices (tablets, 768px and up) ---- */
/* ---- Class infix: md */
/* ---- Dimension ≥ 768px */
@media (min-width: 768px) {
  .header {
    position: relative;
    z-index: 1020;
    background-color: var(--bs-body-bg);
    border-bottom: 1px solid transparent;
    position: fixed;
    width: 100%;
    z-index: 1020;
    top: 0;
    left: 0;
    right: 0;
  }

  .header.navbar-sticky-on {
    background-color: var(--bs-tertiary-bg);    
    border-bottom: 1px solid var(--bs-gray-200);
    -webkit-animation: fadeInDown 0.5s;
    animation: fadeInDown 0.5s;
  }

  [data-bs-theme=dark] .header{
    background-color: var(--bs-tertiary-bg);
  }
  
  [data-bs-theme=dark]  .header.navbar-sticky-on{
    background-color: var(--bs-body-bg);
  }


  @keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }

    100% {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }

  .hero .hero-content{
    padding-top: 0;
  }

  .hero .description {
    margin-bottom: 4.5rem;
  }

  .hero-picture img{
    transform: translateX(-60px);
  }

  .hero-picture svg .bgd{
    transform: scaleX(0.8) translateX(20px);
  }

  @media (max-width: 830px){
    .hero-picture svg .circles{
      fill-opacity: 0;
    }
  }

  .hero-picture svg .circles{
    transform: scale(0.9) translateX(60px);
  }

  .hero-picture svg .bubble-1{
    transform: scale(0.9) translate(-140px, 80px);
  }
  .hero-picture svg .bubble-2{
    transform: scale(0.9) translate(0, 100px);
  }

}

/* ---- Large devices (desktops, 992px and up) ---- */
/* ---- Class infix: lg */
/* ---- Dimension ≥ 992px */
@media (min-width: 992px) {

  .nav-brand{
    padding-right: clamp(2rem, -1.875rem + 6.25vw, 3.75rem);
  }

  .navbar-expand-lg .navbar-collapse {
    flex-direction: row;
  }

  .navbar .nav-item .nav-link{
    position: relative;
  }
  .navbar .nav-item .nav-link::after{
    content: '';
    position: absolute;
    width: 90%;
    height: 2px;
    background-color: var(--bs-primary);
    bottom: 4px;
    right: 50%;
    transform: translateX(50%) translateY(5px) scale(0);
    transition: all 0.4s ease-in-out;
    transform-origin: center center;
  }

  .navbar .nav-item:hover .nav-link::after{
    transform: translateX(50%) translateY(0) scale(1);
  }

  .navbar .nav-item i{
    text-align: center;
    padding: 0;
    margin:0;
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateY(2px);
  }

  .navbar .nav-item:hover i{
    width: 20px;
    padding-right: 1rem;
    
  }
  .navbar .dropdown {
    padding-right: 1rem;
  }
  .navbar .dropdown-toggle::before{
    right: -5px;
  }

  .navbar .hr{
    display: none;
  }

  .nav-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 6rem;
    padding-bottom: 0;
    margin-right: 0;
  }

  .nav-icons .icon{
    justify-content: center;
  }

  .nav-icons .language-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .nav-icons .theme-toggle[aria-label="dark"]{
    transform: scale(1.09) translatex(0);
  }

  .nav-social {
    display: none;
  }

  .hero .row{
    padding-top: 5rem;
  }

  

  .hero-picture .social{
    overflow: auto;
    width: 20px;
  }

  .hero-picture .social ul{
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hero-picture .social li{
    padding-bottom: 0.825rem;
  }

  .hero-picture img{
    transform: translateX(0);
  }

  .hero-picture svg .bgd{
    transform: scaleX(1) translateX(0);
  }
  
  .hero-picture svg .circles{
    transform: scale(1) translateX(0);
  }
  
  .hero-picture svg .ellipse-1{
    fill-opacity: 0;
  }
  
  .hero-picture svg .ellipse-2{
    fill-opacity: 1;
  }
  
  .hero-picture svg .bubble-1{
    transform: scale(1) translateX(0);
    transform-origin: center;
  }
  
  .hero-picture svg .bubble-2{
    transform: scale(1);
    transform-origin: center;
  }
}

/* ---- X-Large devices (large desktops, 1200px and up) ---- */
/* ---- Class infix: xl */
/* ---- Dimension ≥ 1200px */
@media (min-width: 1200px) {
}

/* ---- XX-Large devices (larger desktops, 1400px and up) ---- */
/* ---- Class infix: xxl */
/* ---- Dimension ≥ 1400px */
@media (min-width: 1400px) {
}

@media print {
  @page {
    size: 8.5in 11in;
    margin-top: 6cm;
    margin-left: 6cm;
    margin-right: 3cm;
    margin-left: 3cm;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
