.hero-content-container{
    display: flex;
    justify-content: space-between;
    height: 80vh;
}

.mob-page-art{
    display: none;
}

.bps-bg-image{
    position: absolute;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    left: 50%;
}

.bps-bg-image img{
    height: 100%;
    z-index: 22;
}

.left-hero-section{
    width: 60%;
}

.hero-content2-container{
    display: flex;
    justify-content: space-between;
}

.hero2-right-section{
    width: 60%;
}

.hero2-left-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding-right: 7rem;
}

.hero2-left-section img{
    width: 100%;
}

@media (min-width:1821px) {
    .subscribe-section{
        margin-top: 3.5rem;
    }
}

@media (max-width:1820px) and (min-width:1481px) {
    .hero-title-medium {
        font-size: 5.1vw
    }

    .hero-title-large {
        font-size: 6.13vw
    }
}

@media (max-width:1480px) {
    .hero-wrap {
        padding-top: 0.5vh
    }

    .hero-content {
        margin-bottom: 7vh
    }

    .hero-title-medium {
        font-size: 7.8rem
    }

    .hero-title-large {
        font-size: 7.5rem;
        margin-bottom: 4vh
    }

    .title-norm{
        font-size: 3.5rem;
    }

    .subscribe-form-caption{
        font-size: 1.3rem;
        margin-top: 2rem;
    }
}

@media (max-width:1280px) {
    .hero-title-medium {
        font-size: 6.3vw
    }

    .hero-title-large {
        font-size: 6.6vw
    }
}

@media (max-width:1024px) {
    .hero-wrap {
        padding-top: 1vh
    }

    .hero-content {
        margin-bottom: 5vh
    }

    .hero-title {
        margin-bottom: 3vh
    }

    .hero-title-small {
        font-size: 4.8rem
    }

    .hero-title-medium {
        font-size: 5.6rem
    }
}

@media (max-width:768px) {
    .hero-title-small {
        font-size: 4rem
    }

    .hero-title-medium {
        font-size: 5rem
    }

    .hero-title-large {
        font-size: 6rem
    }
}

@media (max-width:480px) {
    
    .hero-title-small {
        font-size: 3rem
    }

    .hero-title-medium {
        font-size: 3.4rem
    }

    .hero-title-large {
        font-size: 3.8rem
    }

    .bps-bg-image{
        display: none;
    }

    .hero-content-container{
        display: block;
        height: fit-content;
    }

    .left-hero-section{
        width: 100%;
    }

    .hero-content2-container{
        display: block;
    }
    
    .hero2-right-section{
        width: 100%;
        margin-top: 2rem;
    }
    
    .hero2-left-section{
        display: none;
    }

    .title-norm{
        font-size: 2.2rem;
    }

    .mob-page-art{
        display: block;
        margin-bottom: 1rem;
    }

    .mob-page-art img{
        width: 90%;
    }

    .first-subscribe-section {
        display: none;
    }

}

@media (max-width:320px) {

    .hero-title-small {
        font-size: 2.8rem
    }

    .hero-title-medium {
        font-size: 3.2rem
    }

    .hero-title-large {
        font-size: 3.6rem
    }

    .bps-bg-image{
        display: none;
    }

    .bps-bg-image{
        display: none;
    }

    .hero-content-container{
        display: block;
        height: fit-content;
    }

    .left-hero-section{
        width: 100%;
    }

    .hero-content2-container{
        display: block;
    }
    
    .hero2-right-section{
        width: 100%;
        margin-top: 2rem;
    }
    
    .hero2-left-section{
        display: none;
    }

    .title-norm{
        font-size: 2.2rem;
    }

    .mob-page-art{
        display: block;
        margin-bottom: 1rem;
    }

    .mob-page-art img{
        width: 100%;
    }

    .first-subscribe-section {
        display: none;
    }

}

.changing-text {
    font-weight: var(--font-weight-one-light) !important;
    animation-name: fade;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }
  
  @keyframes fade {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }
