@import 'style.css';

.aboutus {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background-image: url('images/aboutus-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-color);
}

.aboutus.show {
    display: block;
}

.aboutus.hide {
    pointer-events: none; 
    display: none;
}


.aboutus .bg-cover {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    padding-top: 100px;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}

.aboutus hr {
    width: 200px;
    color: var(--text-color);
    height: 1px;
    background-color: var(--text-color);
    margin: 15px;
}

.social-link {
    text-decoration: none; /* Remove underline */
    color: var(--text-color);
    font-weight: normal;
}

.social-link:hover {
    color: var(--main-color);
}
  