* {
    margin: 0;
    padding: 0;
    font-family: 'Jost', sans-serif;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
}

.main-about {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-image: url(images/OurDrives/background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    flex-wrap: wrap;
}

.content-container {
    width: 100%;
    height: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-top: 3vmax;

}

.img-container {
    width: 30vmax;
    height: 70vh;
    background: url(images/img/About-us.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 3vmax;
}

.about-text {
    width: 40vmax;
    color: white;
    text-align: justify;
    margin: 2vmax;

}

.main-about h1 {
    font-size: 4vmax;
    color: white;
    text-align: center;
    letter-spacing: 4px;
}

.navbar {
    position: relative;
    margin-bottom: 4vmax;
    display: flex;
    height: 17vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.295);
    z-index: 100;
    align-items: center;
    justify-content: flex-end;
}

.navbar img {
    width: 10vmax;

}

.back-btn {
    position: absolute;
    left: 0vmax;
    top: 2vmax;
    z-index: 100;

}

.back-btn button {
    padding: 2px;
    height: 2em;
    width: 5em;
}


.btn-container {
    position: relative;
    left: -1em;
    display: flex;
    margin-top: 1vmax;
    justify-content: flex-start;
    align-items: center;
}

.btn {
    cursor: pointer;
    height: 2em;
    width: 5em;
    position: relative;
    border-radius: 0 10em 10em 0;
    outline: none;
    background-color: transparent;
    border-top: 2px solid rgb(88, 170, 12);
    border-right: 2px solid rgb(88, 170, 12);
    border-left: none;
    border-bottom: 2px solid rgb(88, 170, 12);
    transition: all 0.5s ease-in-out;
    color: white;
}

.btn:hover {
    background: rgba(88, 170, 12, 0.441);
    color: white;

}

a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

a:active {
    border: none;
    color: white;
}

.btn-container img {
    position: relative;
    width: 3em;
    height: 3em;
    left:5em;
    z-index: 1;

}