@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&family=Quicksand:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-family: 'Quicksand', sans-serif;
}

body {
    overflow: hidden;
}

.video-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

video {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 100%; 
    min-height: 100vh;
    object-fit: fill;
}

.background-blur {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    background-color: rgba(0, 0, 0, 0.7);
    transform: translate3d(0,0,0);
    z-index: 1;
}

nav.navbar {
    z-index: 1000;
    height: 10vh;
}

.nav-link {
    color: #fff;
}

.nav-link:hover {
    color: #979797;
}

.content-area {
    width: 100%;
    height: 90vh;
    z-index: 100;
}

.pagination .page-item {
    opacity: 50%;
}

.pagination .page-item.active {
    opacity: 100%;
}

.page-item a {
    width: 19px;
    height: 19px;
}

.page-link:hover {
    background-color: rgb(157, 157, 157);
    opacity: .8;
}

h1 {
    font-family: 'Poppins', sans-serif;
}

.main-wrapper {
    justify-content: center;
    align-items: center;
}

main {
    opacity: 0;
    pointer-events: none;
    color: #fff;
    position: absolute !important;
    width: 100%;
}

.main-visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.main-header h4 {
    font-family: 'Poppins';
    font-weight: 800;
    font-size: 36px;
    line-height: 46px;
}

.about-img {
    max-width: 207px;
}

.work-line {
    display: flex;
    align-items: center;
    min-height: 110px;
    background: rgba(217, 217, 217, 0.5);
    box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}

.work-line h3 {
    font-size: 24px;
}

.work-line h3::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    margin-top: 10px;
    background: #96713F;
    border-radius: 4px;
}

.work-line-container {
}

.work-lineContent-container {
    background: rgba(217, 217, 217, 0.5);
    box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    padding: 15px 20px;
}

.work-lineContent-container h3::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    margin-top: 10px;
    background: #96713F;
    border-radius: 4px;
}

.card-content-group-container {
    background: rgba(217, 217, 217, 0.5);
    box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    padding: 15px 20px;
}