*{
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
}

#main{
    width: 100%;
    min-height: 100vh;
}

#top{
    width: 100%;
    min-height: 60vh;
    background-image: url(https://images.unsplash.com/photo-1683009427692-8a28348b0965?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
}

#overlay{
    position: relative;
    width: 100%;
    min-height: inherit;
    background-color: rgba(0, 0, 0, 0.269);
}

#text{
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20%;
    width: 100%;
    padding: 0 10vw;
    color: white;
    
}

#textright{
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#textright p {
    font-size: 12px;
    width: 40%;
}

 #text h1{
    
    font-weight: 600;
    font-size: 6vw;
 }

#bottom{
    display: flex;
    width: 100%;
    min-height: 40vh;
    background-color: blue;
}

#bone{
    padding: 30px;
    width: 25%;
    min-height: inherit;
    background-color: white;
}

#bone p{
    font-size: 12px;
    margin-top: 20px;
}
#btwo{
    width: 25%;
    min-height: inherit;
    background-image: url(https://images.pexels.com/photos/3935704/pexels-photo-3935704.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    background-position: 80% 0%;
    background-size: cover;
}
 
#bthree{
    width: 20%;
    min-height: inherit;
    background-color: rebeccapurple;
}

#bthreetop{
    padding: 20px;
    width: 100%;
    min-height: 20vh;
    background-color: orange;
    color: #fff;
}

#bthreetop p{
    margin-top: 10px;
    font-size: 10px;
}
#bthreebottom{
    width: 100%;
    min-height: 20vh;
    background-image: url(https://images.pexels.com/photos/2542339/pexels-photo-2542339.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
    background-position: center;
    background-size: cover;
}

#bfour{
    width: 30%;
    min-height: inherit;
    padding: 30px;
    background-color: #444;
    color: #fff;
}

.notf{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.notf #photo{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url(https://images.pexels.com/photos/2379005/pexels-photo-2379005.jpeg?auto=compress&cs=tinysrgb&w=600);
    background-position: center;
    background-size: cover;
}

.notf p{
    width: 86%;
    font-size: 12px;
    margin-left: 15px;
}

@media(max-width: 500px){
    #overlay #text{
        flex-direction: column;
        align-items: flex-start;
    }

    #text h1{
        font-size: 10vw;
    }

    #bottom{
        min-height: 20vh;
    }

    #overlay #text #textright{
        align-items: flex-start;
        flex-direction: column;
    }

    #overlay #text #textright p {
        width: initial;
        margin-top: 20px;
    }

    #overlay #text #textright #icons{
        margin-top: 30px;
    }

    #bottom{
        flex-direction: column;
    }

    #bone{
        width: 100%;
    }
    #btwo{
        /* width: 100%;
        min-height: 40vh;
        background-position: 80% 0%; */
        width: 100%;
    min-height: 28vh;
    background-position: 30% 81%;
    }
    #bthree{
        flex-direction: column;
        width: 100%;
    }

    #bthreebottom{
        min-height: 40vh;
    }
    #bfour{
        width: 100%;
    }
}