.navigation-buttons{
    display: grid;
    display: -ms-grid;
    display: -moz-grid;
}

.homepage-landing-container{
    /*position: sticky;
    top: 0;*/
    /* position: fixed;
    top:0;
    left:0;
    right:0; */
    margin-top: 1rem;
    overflow: hidden;
}
.homepage-landing, .homepage-landing-decoy{
    height: auto;
    position: relative;
    width:90vw;

    /* max-width: 1440px; */
    margin: 1rem auto;
    overflow: hidden;
}

@media (max-width: 425px){

    .homepage-landing-container{
        margin-top: 0rem;
    }
    .homepage-landing{
        margin: 0rem auto;
    }
}
.swiper-slide{
    height: auto;
    width: 80vw;
    width:auto;
    background-color: white;
}
@media (max-width: 906px){
    .homepage-landing{
        width: 100%;
    }
    .swiper-slide{
        width: 100%;
    }
}
/*
 Styling the homepage landing navigation buttons;
*/
.homepage-landing .navigation-buttons{
    position: absolute;
    top: 50%;
    z-index: 5;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 906px){
    .homepage-landing .navigation-buttons{
        padding: 0rem 1rem;
    }
}
@media (min-width: 1200px){
    .navigation-buttons{
        padding: 0rem 2rem;
        margin: auto;
    }
}

.navigation-buttons button{
    border: none;
    position: relative;
    top:-50%;
    border: 2px solid transparent;
    background-color: transparent;
}

.navigation-buttons button:hover{
    cursor: pointer;
    /* background-color: #273273; */
    transform: scale(110%);
    transform-origin: center;
    /* border-color: white; */
}

.navigation-buttons button:first-of-type{
    transform-origin:left center;
}

.navigation-buttons button:last-of-type{
    transform-origin:right center;
}

.navigation-buttons button img{
    height: 50px;
}
@media (max-width: 420px){
    .navigation-buttons button img{
        height: 40px;
    }
}
/*
    Styling the landing image
*/
.landing-image{
    width: 100%;
    height: auto;
    overflow: hidden;
}

.landing-image img{
    width: 100%;
    height: auto;
}

.small-screen-banner{
    display: none;
}
.large-screen-banner{
    display: inline;
}
@media (max-width: 425px){
    .small-screen-banner{
        display: inline;
    }
    .large-screen-banner{
        display: none;
    }
}
/*
    Positioning elements in the landing container
*/
.landing{
    position: relative;
    max-width: 80vw;
    overflow: hidden;
    margin: auto;
}

.landing{
    display: grid;
    display: -ms-grid;
    display: -moz-grid;

    grid-template-columns: 55% 45%;
    justify-content: center;
}

@media (max-width: 888px){
    .landing{
        max-width: unset;
    }
}

@media (max-width: 767px){
    .landing{
        grid-template-columns: auto;
    }
}
.landing .landing-image{
    height: 75vh;
    overflow: visible;
    /* background-color: #eb98c0c9; */
}
.landing .landing-image img{
    position: relative;
    right: 50%;
    z-index: -1;
}
@media (max-width: 767px){
    .landing .landing-image{
        text-align: right;
    }
}
.landing .landing-content{
    display: grid;
    display: -ms-grid;
    display: -moz-grid;
}

.landing .landing-content{
    grid-template-rows: repeat(3, auto);
    row-gap: 1rem;
    align-content: center;
    padding: 1rem 3rem;
}

@media (max-width: 767px){
    .landing .landing-content{
        padding-top: 1.5rem;
        background-image: linear-gradient(to bottom, #eb98c000 1%, #eb98c0 99%);
        background-image: linear-gradient(to bottom, #eb98c000, #fbecf4, #fbecf4, #fbecf4, #fbecf4);
        background-image: unset;
        text-align: center;
        grid-area: 2/1/span 1/ span 1;
        margin-top: -1.5rem;
    }
    .landing .landing-content h1{
        /* text-align: center; */
    }
    .landing .landing-content a{
        text-decoration: none;
        font-size: 0.9rem;
        color: black;
        text-align: center;
        display: block;
        margin: auto;
        border-radius: 5px;
    }
}
.landing .landing-image img{
    /* display: none; */
    height: 100%;
    width: auto;
}

@media (max-width: 768px){
    .landing .landing-image{
        height: unset;
        width: 100%;
    }
    .landing .landing-image img{
        /* display: none; */
        height: unset;
        width: 100vw;
        position: unset;
    }
}
.landing .more-info-container{
    position: absolute;
    top:10px;
    right: 30px;
    width: max-content;
}

@media (max-width: 1212px){
    .landing .more-info-container{
        display: none;
    }
}
.landing .more-info{
    background-color: white;
    padding:2rem;
    max-width: 600px;
    border-radius: 5px;
    font-size: 1.1rem;
    position:relative;
    left:0;
}

.blue-rectangle-container{
    position: absolute;
    top: 0;
    left: 20vw;
    bottom: 0;
    width: 30vw;
}

.blue-rectangle{
    width: 100%;
    height: 100%;
    max-width: 300px;
    background-color: #273273e8;
    box-shadow: 15vw 1px 60px #27327391;
    position:relative;
    left:0;
}

.slide-title{
    position: absolute;
    bottom: 10%;
    left: 27%;
}

.slide-title .index{
    color: white;
    font-size: 10rem;
}

.slide-title .title{
    color: white;
    font-size: 6rem;
    line-height: 5.5rem;
    margin-left: 2rem;
}

.slide-2 .title{
    font-size: 5rem;
    line-height: 4.5rem;
}

.slide-3 .title{
    font-size: 5.5rem;
    line-height: 5rem;
}

.fly-in-from-right{
    position: relative;
    left:0;
    transition: all .5s linear;
}

.beko-logo-container{
    position: absolute;
    top:50px;
    left:25.5%;
}

.beko-logo-landing{
    width: 150px;
}


@media (max-width:1024px) and (min-width: 820px){
    /* .homepage-landing, .homepage-landing-decoy{
        min-height: unset;
        max-height: 628px;
        overflow: hidden;
    } */
    .swiper-slide{
        max-height: 628px;
    }
    .landing-image{
        max-height: 628px;
    }
    .slide-title .index{
        font-size: 6rem;
    }
    .slide-title .title{
        font-size: 4rem;
        line-height: 4rem;
    }
}
@media (max-width: 820px) and (min-width: 768px){
    .blue-rectangle-container{
        left: 2vw;
        bottom: 0;
        width: 50vw;
    }
    .beko-logo-container{
        top:10vw;
        left:10%;
    }
    .slide-title{
        bottom: 10%;
        left: 5vw;
        width: 90vw;
    }
    .slide-title .index{
        font-size: 7rem;
    }
    .slide-title .title{
        font-size: 4rem;
        line-height: 4rem;
    }
}
@media (max-width: 768px){
    .blue-rectangle-container{
        left: 2vw;
        bottom: 0;
        width: 50vw;
    }
    .beko-logo-container{
        top:10vw;
        left:10%;
    }
    .slide-title{
        bottom: 10%;
        left: 5vw;
        width: 90vw;
    }
    .slide-title .index{
        font-size: 12rem;
    }
    .slide-title .index{
        font-size: 8rem;
    }
    .slide-title .title{
        font-size: 6rem;
        line-height: 6rem;
    }
}
@media (max-width: 450px){
    .blue-rectangle-container{
        left: 2vw;
        bottom: 0;
        width: 50vw;
        display: none;
    }
    .beko-logo-container{
        top:5vw;
        left:10%;
    }
    .beko-logo-landing{
        width: 90px;
    }
    .slide-title{
        bottom: 20%;
        left: 5vw;
        width: 90vw;
    }
    .slide-title .index{
        font-size: 8rem;
    }
    .slide-title .title{
        font-size: 4rem;
        line-height: 4rem;
    }
    .slide-1 .title{
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
}
@media (max-width: 375px){
    .slide-title .index{
        font-size: 8rem;
    }
    .slide-title .title{
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
    .slide-1 .title{
        font-size: 2.6rem;
        line-height: 2.6rem;
    }
    .slide-3 .title{
        font-size: 2.8rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 768px){
    .main-bgk-logo{
        width: 70vw !important;
    }
    .landing .landing-image{
        text-align: center;
    }
}