* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.container {
    height: 100vh;
    width: 100%;
    background-image: url(media/imageapple.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.navbar {
    width: 88%;
    margin: auto;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 140px;
    cursor: pointer;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: #5f5f5f;
    font-size: 15px;
}

.navbar ul li a:hover {
    color: white;
}

.content {
    width: 100%;
    position: absolute;
    transition-property: 30%;
}

.left-col {
    margin-left: 6%;
}

.left-col h1 {
    font-size: 90px;
    color: #fff;
    line-height: 110px;
    float: left;
}

.right-col p {
    font-size: 18px;
    color: #5f5f5f;
    font-weight: 400;
    margin-right: 15px;
    margin-top: 7em;
}

#icon {
    /* width: 80%; */
    cursor: pointer;
    width: 25%;
    margin-top: 7em;
}

@media screen and (max-width:780px) {
    .navbar ul li {
        list-style: none;
        margin: 0 15px;
        display: block;
        padding: 5px;
    }
    .navbar ul li a {
        text-decoration: none;
        color: #5f5f5f;
        font-size: 15px;
    }
    .right-col {
        float: right;
        margin-right: 2%;
    }
}

@media screen and (min-width:100px) and (max-width:779PX) {
    .container {
        height: 120vh;
        width: 115%;
        background-image: url(media/imageapple.jpeg);
        background-size: cover;
        background-position: center;
        position: relative;
    }
}

.right-col {
    float: right;
    margin-right: 6%;
    /* margin-top: 80px; */
    display: flex;
    align-items: center;
}

@media screen and (max-width:1250px) {
    .left-col h1 {
        font-size: 50px;
        color: #fff;
        line-height: 80px;
        float: left;
    }
    .right-col {
        float: right;
        margin-right: 2%;
        display: flex;
        align-items: center;
        height: 95vh;
    }
    .right-col p {
        color: black;
    }
    .container {
        height: 120vh;
    }
}