*{
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    overflow-x: hidden;
}

.navbar {
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo {
    transform: translateX(100px);
    font-size: 1.75rem;
    margin: 1.75rem;
}

.navbar-links ul {
    transform: translateX(-100px);
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    font-size: 1.25rem;
    text-decoration: none;
    color: white;
    padding: 2rem;
    display: block;
}

.navbar-links li:hover {
    background-color: black;
    opacity: 0.75;
}

.menu-btn {
    display: none;
    position: absolute;
    top: 2.5rem;
    right: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 16px;
    cursor: pointer;
    transition: all .1s ease-in-out;
  }
  .menu-btn__burger {
    display: none;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 25px;
    transition: all .25s ease-in-out;
  }
  .menu-btn__burger::before,
  .menu-btn__burger::after {
    display: none;
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 25px;
    transition: all .1s ease-in-out;
  }
  .menu-btn__burger::before {
    transform: translateY(-8px);
  }
  .menu-btn__burger::after {
    transform: translateY(8px);
  }
  
  .menu-btn.open .menu-btn__burger {
    background: transparent;
    transform: translatex(0px);
  }
  .menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) 
  }
  .menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) 
  }


@media(max-width: 1050px) {

    .logo {
        transform: translateX(-0px);
        font-size: 1.75rem;
        margin: 1.75rem;
    }

    .menu-btn {
        display: flex;
    }

    .menu-btn__burger {
        display: flex;
    }
    
    .menu-btn__burger::before,
    .menu-btn__burger::after {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }
    
    .navbar {
        z-index: 999;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-links ul {
        z-index: 999;
        transform: translateX(-0px);
        width: 100%;
        flex-direction: column;
    }

    .navbar-links li {
        z-index: 999;
        text-align: right;
    }

    .navbar-links li a {
        z-index: 999;
        padding: .5rem 1rem;
    }

    .navbar-links li:hover {
        z-index: 999;
        border-radius: 100px;
        background-color: black;
        opacity: 0.75;
    }

    .navbar-links.active {
        z-index: 999;
        display: flex;
    }

    .row .column {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%;
        display: block;
        margin-bottom: 20px;
    }

    .row .column .container2 {
        height: 80vh;
        margin-top: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
      
}

.banner {
    position: fixed;
    margin: 0rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.banner video {
    margin: 0rem;
    display: flex;
    position: absolute;
    vertical-align: top;
    float: left;
    top: 0;
    left: 0;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.bg-overlay {
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    position: fixed;
    z-index: -1;
}


.container2 {
    height: 80vh;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.general__card {
    width: 100%;
    height: 100%;
    padding: 2rem;
    background-image: url(images/general/20.jpg);
    background-size: cover;
    background-color: #444;
    background-blend-mode: multiply;
    color: white;
    text-align: left;
}

.general__card__title {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-bottom: 1rem;
}

.general__card__title::after {
    content: "";
    position: absolute;
    top: -0.25rem;
    left: -2rem;
    width: calc(100% + 4rem);
    bottom: -0.25rem;
    background: lightskyblue;
    z-index: -1;
    transform: scaleX(0.085);
    transform-origin: left;
    transition: transform 250ms ease-in;
}

.general__card:hover .general__card__title::after {
    transform: scaleX(1);
}

.general__card__body {
    z-index: 1;
    position: relative;
    color: transparent;
    margin: 0;
    transition: color 350ms 350ms;
}

.general__card__body::after {
    content: "";
    position: absolute;
    top: -0.75rem;
    bottom: -0.75rem;
    left: -0.75rem;
    right: -0.75rem;
    background: white;
    z-index: -1;
    transform: scaleY(0);
    transition: transform 250ms ease-in 250ms;
    transform-origin: top;
    transition-delay: 250ms;
}

.general__card:hover .general__card__body {
    color: #444;
}

.general__card:hover .general__card__body::after {
    transform: scaleY(1);
}

.column {
    float: left;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    padding: 0 10px;
}

.row {
    margin: 0 -5px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

