

.landing-page{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 85vh;
}

.main-landing{
    position: relative;
    height: 100vh;
}

.main-landing video{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    background-blend-mode: overlay;
}

.port-content img{
    width: 100%;
    border-radius: 0.2rem;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: 0.2s linear;
}

.landing-page span{
    font-size: 7rem;
}

.landing-page h1{
    font-size: 4.2rem;
    line-height: 5.5rem;
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 800;
    margin-block: 40px;
    position: relative;
    text-transform: uppercase;
    margin: 0;
}

.landing-page button{
    margin-top: 40px;
}


.landing-home{
    margin-top: -6px;
}

.landing-why-choose{
    padding-top: 9rem;
}

.landing-about-img{
    width: 15%;
}

.landing-why-section{
    padding-top: 0;
}

@media (max-width: 765px){

    
    .landing-page h1{
        font-size: 2rem;
        line-height: 2.5rem;
        margin: 0;
    }
    
    .landing-page{
        height: 100vh;
    }

    .landing-page span{
        font-size: 2.4rem;
    }

    .landing-page button{
        margin-block: 40px;

    }

    .landing-icon-box img{
        margin-top: -250px;
    }

    main{
        background-position: center;
    }

   .thane-landing{
    background-position: -610px;
   }


    .port-content{
        grid-template-columns: repeat(1, 1fr);
    }

    
}

@media (min-width: 768px) and (max-width: 1025px){
    .thane-landing{
    background-position: right;
   }

    .main-landing video{
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 90vh;
    background-color: var(--background-color);
    background-blend-mode: overlay;
}
}