body{
    background-color: #f0f0f0;
}
#navbar-opener{
    display: none;
}
header{
    width: 100%;
    position: fixed;
    background-color: rgba(190, 190, 190, 0.2);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    z-index: 5;
    padding: 15px;
}
header:hover{
    width: 100%;
    position: fixed;
    background-color: rgba(190, 190, 190, 0.2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: 5;
    padding: 15px;
}
.logo{
    height: 75px;
}
.link{
    text-decoration: none;
    color: black;
    display: flex;
}
.link:hover{
    color: rgb(0, 159, 227);
    text-decoration: none;
    display: flex;
}
.navbar{
    list-style: none;
    display: flex;
    align-items: start;
    width: 100%;
}
.menubar-item{
    float: left;
    background-color: transparent;
    border: none;
    width: 12%;
}
.navbar .rest-li{
    width: 28%;
}

.rest{
    position: relative;
    display: flex;
    float: right;
}

.dropdown{
    padding-right: 15px;
    min-width: 12%;
}

.menu{
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    border-color: gray;
    border-width: 5px;
    min-width: 8%;
}

.dropdown-item{
    width: auto;
}

.content{
    color: black;
    padding: 3em;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.main-heading{
    font-size: 6em;
    display: block;
}

.middle-heading{
    font-size: 2em;
    display: block;
}

.middle{
    font-size: 1.4em;
}

.small{
    font-size: 1.1em;
}

.vertically-middle{
    position: relative;
    height: 100%;
}

/*Screensize dependency*/
.btn-middle{
    font-size: 1.5em;
    border-radius: 10px;
}

.blur{
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter:  blur(10px);
    background-color: rgba(150, 150, 150, 0.5);
    color: white;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.rotate-45{
    transform: rotate(45deg);
}

.full{
    min-width: 100%;
}

.left-half{
    top: 0;
    width: 50%;
    height: 100%;
    padding-left: 10%;
    text-align: left;
    justify-content: left;
}

/*Screensize dependency*/
.left-middle{
    top: 0;
    width: 40%;
    padding: 50px;
    margin-left: 5%;
    margin-top: 16%;
    text-align: left;
    justify-content: left;
    position: absolute;
}

.block{
    display: block;
}

.white{
    background-color: white;
}

/*Screensize dependency*/
.round{
    border-radius: 5px;
}

/*Screensize dependency*/
.left{
    text-align: left;
    align-items: left;
    display: block;
}

.dropdown {
    position: relative;
}

.inisible{
    display: none;
}
.visible{
    display: flex;
}

.menu{
    list-style: none;
    background-color: white;
    position: fixed;
    padding: 5px;
}

.dropdown-item{
    text-align: right;
    padding: 5px;
}

.standard-image{
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    z-index: 0;
}

/*Screensize dependency*/
.landing{
    width: 100%;
    height: 693px;
    color: white;
    position: relative;
}

.landing .landing-video{
    width: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
    left: 0px;
}



.text{
    font-size: 1.4em;
}

.lists{
    margin: 0px;
    padding: 1%;
    align-items: center;
    position: relative;
    display: flex;
    margin-left: 11px;
}

/*Screensize dependency*/
.item-list{
    width: 1604px;
    background-color: white;
    margin-left: 6.2%;
    border-radius: 10px;
}

/*Screensize dependency*/
.double-list-item{
    display: block;
    text-align: left;
    width: 100%;
    height: 473px;
}


/*Screensize dependency (ordering)*/
.list-item-image-left{
    width: 50%;
    height: 100%;
    padding: 0px;
}

/*Screensize dependency (ordering)*/
.list-item-image-right{
    width: 50%;
    height: 100%;
    padding: 0px;
}

/*Screensize dependency (ordering)*/
.list-item-text-left{
    font-size: 1.3em;
    width: 50%;
    height: 100%;
    padding: 3%;
}

/*Screensize dependency (ordering)*/
.list-item-text-right{
    font-size: 1.3em;
    width: 50%;
    height: 100%; 
    padding: 3%;
}

.contact{
    margin-left: 0px;
}

.first{
    top: -100px;
    height: 693px;
}
.second{
    top: 884px;
}
.third{
    height: 857px;
}
.fourth{
    height: 857px;
}
.fifth{
    height: 857px;
}
.sixth{
    margin-left: 200px;
    border-radius: 15px;
    height: fit-content;
}

@media screen and (min-width: 300px) and (orientation: portrait){
    #navbar-opener{
        display: block;
        position: fixed;
        z-index: 10;
        font-size: 5em;
    }
    .navbar-invisible{
        display: none;
    }
    .navbar-visible{
        display: flex;
    }    
    .content{
        color: black;
        padding: 3em;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    
    .main-heading{
        font-size: 6em;
        display: block;
    }
    
    .middle-heading{
        font-size: 2.5em;
        display: block;
    }
    
    .middle{
        font-size: 1.4em;
    }
    
    .small{
        font-size: 2em;
    }
    
    /*Screensize dependency*/
    .btn-middle{
        font-size: 1.5em;
        border-radius: 5px;
    }
    
    .blur{
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter:  blur(10px);
        background-color: rgba(150, 150, 150, 0.5);
        color: white;
        z-index: 1;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .rotate-45{
        transform: rotate(45deg);
    }
    
    .full{
        min-width: 100%;
    }
    
    .left-half{
        top: 0;
        width: 100%;
        height: fit-content;
        text-align: left;
        justify-content: left;
    }
    
    /*Screensize dependency*/
    .left-middle{
        top: 0;
        width: 70%;
        padding: 7px;
        margin-left: 5%;
        margin-top: 35%;
        text-align: left;
        justify-content: left;
        position: absolute;
    }
    
    .block{
        display: block;
    }
    
    .white{
        background-color: white;
    }
    
    /*Screensize dependency*/
    .round{
        border-radius: 3px;
    }
    
    /*Screensize dependency*/
    .left{
        text-align: left;
        align-items: left;
        display: block;
    }
    
    .inisible{
        display: none;
    }
    .visible{
        display: flex;
    }
    
    .standard-image{
        width: 75%;
        padding: 0;
        margin-left: 5%;
        margin-right: 12.5%;
        left: 0;
        z-index: 0;
    }
    
    /*Screensize dependency*/
    .landing{
        width: 100%;
        height: fit-content;
        color: white;
        position: relative;
    }
    
    .landing .landing-video{
        width: 100%;
        position: absolute;
        object-fit: cover;
        z-index: 0;
        left: 0px;
        top: -95px;
    }
    .landing-text{
        height: 500px;
        padding: 0;
        padding-top: 130px;
        margin: 0;
    }
    
    .text{
        font-size: 1.2em;
    }
    
    .lists{
        margin: 0px;
        padding: 1%;
        align-items: center;
        position: relative;
        display: flex;
        margin-left: 25px;
    }
    
    /*Screensize dependency*/
    .item-list{
        width: 90%;
        background-color: white;
        padding: 10px;
        margin-left: 5%;
        margin-right: 5%;
        border-radius: 10px;
        height: fit-content;
    }
    
    /*Screensize dependency*/
    .double-list-item{
        display: block;
        text-align: left;
        height: fit-content;
        width: 100%;
    }
    
    
    /*Screensize dependency (ordering)*/
    .list-item-image-left{
        width: 75%;
        margin-left: 6.25%;
        margin-right: 12.5%;
        padding: 0px;
    }
    
    /*Screensize dependency (ordering)*/
    .list-item-image-right{
        width: 75%;
        margin-left: 6.25%;
        margin-right: 12.5%;
        height: 100%;
        padding: 0px;
    }
    
    /*Screensize dependency (ordering)*/
    .list-item-text-left{
        font-size: 1.3em;
        width: 75%;
        margin-left: 6.25%;
        margin-right: 12.5%;
        height: 100%;
        padding: 3%;
    }
    
    /*Screensize dependency (ordering)*/
    .list-item-text-right{
        font-size: 1.3em;
        width: 75%;
        margin-left: 6.25%;
        margin-right: 12.5%;
        height: 100%; 
        padding: 3%;
    }
    
    .first{
        top: -100px;
    }
    .second{
        top: 884px;
    }
    .third{
        height: 857px;
    }
    .fourth{
        height: 857px;
    }
    .fifth{
        height: 857px;
    }
    .sixth{
        margin-left: 40px;
        margin-top: 5%;
        width: 90%;
        border-radius: 15px;
    }
}

@media screen and (min-width: 1024px) {
    body{
        background-color: #f0f0f0;
    }
    header{
        width: 100%;
        position: fixed;
        display: flex;
        background-color: rgba(190, 190, 190, 0.2);
        -webkit-backdrop-filter: blur(7px);
        backdrop-filter: blur(7px);
        z-index: 5;
        padding: 15px;
    }
    header:hover{
        width: 100%;
        position: fixed;
        background-color: rgba(190, 190, 190, 0.2);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        z-index: 5;
        padding: 15px;
    }
    .logo{
        height: 75px;
    }
    .link{
        text-decoration: none;
        color: black;
        display: flex;
    }
    .link:hover{
        color: rgb(0, 159, 227);
        text-decoration: none;
        display: flex;
    }
    .navbar{
        list-style: none;
        display: flex;
        align-items: start;
        width: 100%;
    }
    .menubar-item{
        float: left;
        background-color: transparent;
        border: none;
        width: 12%;
    }
    .navbar .rest-li{
        width: 28%;
    }
    
    .rest{
        position: relative;
        display: flex;
        float: right;
    }
    
    .dropdown{
        padding-right: 15px;
        min-width: 12%;
    }
    
    .menu{
        display: flex;
        flex-direction: column;
        border-radius: 5px;
        border-color: gray;
        border-width: 5px;
        min-width: 8%;
    }
    
    .dropdown-item{
        width: auto;
    }
    
    .content{
        color: black;
        padding: 3em;
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    
    .main-heading{
        font-size: 6em;
        display: block;
    }
    
    .middle-heading{
        font-size: 1.9em;
        display: block;
    }
    
    .middle{
        font-size: 1.4em;
    }
    
    .small{
        font-size: 1.1em;
    }
    
    .vertically-middle{
        position: relative;
    }
    
    /*Screensize dependency*/
    .btn-middle{
        font-size: 1.5em;
        border-radius: 10px;
    }
    
    .blur{
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter:  blur(10px);
        background-color: rgba(150, 150, 150, 0.5);
        color: white;
        z-index: 1;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .rotate-45{
        transform: rotate(45deg);
    }
    
    .full{
        min-width: 100%;
    }
    
    .left-half{
        top: 0;
        width: 50%;
        height: 100%;
        padding-left: 10%;
        text-align: left;
        justify-content: left;
    }
    
    /*Screensize dependency*/
    .left-middle{
        top: 0;
        width: 40%;
        padding: 50px;
        margin-left: 5%;
        margin-top: 16%;
        text-align: left;
        justify-content: left;
        position: absolute;
    }
    
    .block{
        display: block;
    }
    
    .white{
        background-color: white;
    }
    
    /*Screensize dependency*/
    .round{
        border-radius: 5px;
    }
    
    /*Screensize dependency*/
    .left{
        text-align: left;
        align-items: left;
        display: block;
    }
    
    .dropdown {
        position: relative;
    }
    
    .inisible{
        display: none;
    }
    .visible{
        display: flex;
    }
    
    .menu{
        list-style: none;
        background-color: white;
        position: fixed;
        padding: 5px;
    }
    
    .dropdown-item{
        text-align: right;
        padding: 5px;
    }
    
    .standard-image{
        width: 100%;
        padding: 0;
        margin: 0;
        left: 0;
        z-index: 0;
        /*position: absolute;*/
    }
    
    /*Screensize dependency*/
    .landing{
        width: 100%;
        height: 593px;
        color: white;
        position: relative;
    }
    
    .landing .landing-video{
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
        z-index: 0;
        left: 0px;
        top: 0px;
    }
    .landing-text{
        margin-top: 55%;
    }

    .text{
        font-size: 1.4em;
        margin-bottom: 5%;
    }
    
    .lists{
        margin: 0px;
        padding: 1%;
        align-items: center;
        position: relative;
        display: flex;
        margin-left: 11px;
    }
    
    /*Screensize dependency*/
    .item-list{
        margin-left: 12.5%;
        margin-right: 12.5%;
        width: auto;
        background-color: white;
        border-radius: 10px;
        margin-top: 5%;
        margin-bottom: 5%;
    }
    
    /*Screensize dependency*/
    .double-list-item{
        display: block;
        text-align: left;
        width: 100%;
        height: 473px;
    }
    
    
    /*Screensize dependency (ordering)*/
    .list-item-image-left{
        width: 50%;
        height: 100%;
        padding: 0px;
        object-fit: cover;
    }
    
    /*Screensize dependency (ordering)*/
    .list-item-image-right{
        width: 50%;
        height: 100%;
        padding: 0px;
        object-fit: cover;
    }
    
    /*Screensize dependency (ordering)*/
    .list-item-text-left{
        font-size: 1.3em;
        width: 50%;
        height: 100%;
        padding: 3%;
    }
    
    /*Screensize dependency (ordering)*/
    .list-item-text-right{
        font-size: 1.3em;
        width: 50%;
        height: 100%; 
        padding: 3%;
    }
    
    .contact{
        margin-left: 0px;
    }
    
    .first{
        top: -100px;
        height: 693px;
    }
    .second{
        top: 884px;
    }
    .third{
        height: 857px;
    }
    .fourth{
        height: 857px;
    }
    .fifth{
        height: 857px;
    }
    .sixth{
        margin-left: 12.5%;
        margin-right: 12.5%;
        border-radius: 15px;
        padding: 5px;
        height: 200px;
    }
}