.landing-container{
    display: flex;
    position: relative;
    min-height: 100vh;
    justify-content: center;
    background-color: rgb(var(--dark-blue));
}
.landing-bkg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
}
.landing-wrapper{
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
}
.landing-wrapper .icon{
    position: relative;
    height: 30vh;
    width: 30vh;
    padding: 1em;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 4rem 0 1rem;
}
.landing-wrapper .main-icon {
    height: 100%;
    max-height: 20vh;
    margin: auto;
}
.landing-wrapper .main-icon svg {
    width: 100%;
    height: 100%;
}
.landing-wrapper .icon .top-right{
    width: fit-content;
    margin-left: auto;
}

.landing-wrapper .icon .bottom-left {
    margin-right: auto;
    width: fit-content;
}
.landing-title{
    text-align: center;
    text-transform: uppercase;
    font-size: 40.093px;
    letter-spacing: 4.386px;
    line-height: normal;
}
.landing-adress{
    font-size: 12px;
    font-family: Montserrat;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    text-align: center;
}
.landing-insta{
    display: flex;
    flex-direction: column;
    position: relative;
}

.landing-insta-sub{
    position: absolute;
    bottom: -140%;
    left: 100%;
}
.landing-link{
    display: flex;
    position: absolute;
    width: max-content;
    left: 100%;
    top: 50%;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    padding-left: 1rem;
}
.landing-rush-logo{
    display: flex;
    width: 200px;
    height: 75px;
    background: url(../../../assets/img/LOGO-RUSH.svg) no-repeat;

}
@media (min-width: 1680px) {
    .landing-container{
        height: 80vh;
    }
}
@media (max-width: 576px) {
    .landing-title{
        font-size: 43.093px;
    }
    .landing-insta-sub{
        display: none;
    }
}
