.landingpageCenter {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    /* background: linear-gradient(to top, rgba(128, 128, 128, 0.296) 0%, white 50%); */
}

.landingpageContent {
    width: 100%;
    max-width: 1920px;

    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
 
}

.titleContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(50px, 10vw, 200px);
    
    background-color: rgba(255, 255, 255, 0.467);
   
    padding: 40px;
}

.mainLogo {
    width: 50vw;
    max-width: 1000px;
    min-width: 300px;
}

h1 {
    font-size: clamp(0.8rem, 1.5vw, 1.6rem);
    font-weight: 400;
}

.bgImage{
    position: absolute;
    width: calc(100vw - 10px);
    height: calc(100vh - 100px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    top: 100px;
    left: 0;
    z-index: -1;
    opacity: 0.05;
    background-image: url(./../icons/iconsbg.png);
    background-position: center;
    background-size: cover;
  padding: 4px;

}

.bgImage img{
width: 150%;
}


@media(max-width: 1050px){
    .landingpageContent{
     justify-content:  flex-start;
    }
    .titleContainer{
        margin-top: 150px;
    }
}

@media(max-width: 500px){
 
    .titleContainer h1{
        text-align: center;
    }
}