 .landing-sec{
    width: 100%;
    height: 100lvh;
    background-color: antiquewhite;
    position: relative;
    z-index: 1;
 }

 .landing-inner{
    width: 80%;
    height: 80lvh;
    margin: 0 auto;
    padding-top: 7rem;
    z-index: 1;
 }

 .landing-logo-con{
    width: 22rem;
    height: 22rem;
    background-color: black;
    border-radius: 20rem;
    margin: 0 auto;
    overflow: hidden;
 }
 .landing-logo{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
 }

 .landing-content-con{
    width: 100%;
 }
 .landing-content-con h1{
    text-align: center;
    font-size: 35px;
 }
 .landing-content-con span{
    background-color: rgb(206, 145, 154);
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 10px;
    clip-path: polygon(19% 0%, 100% 0%, 82% 100%, 0% 100%);
 }
 .landing-background-con{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    z-index: -1;
 }
 .landing-background{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
 .landing-filter{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(240, 149, 163,0.2);
    z-index: -1;
 }
 @media (max-width: 510px) {
   .landing-inner{
      padding-top: 12rem;
      width: 90%;
   }
   .landing-logo-con{
      width: 15rem;
      height: 15rem;
   }
   .landing-content-con h1{
      font-size: 25px;
   }
   .landing-content-con span{
      padding-top: 5px;
      padding-left: 25px;
      padding-right: 28px;
   }
 }