@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
/*nav start*/
header {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0px;
    transition: 0.6s;
}

header.sticky {
    background: #1483d5;
    padding: 15px 10px;
}

header img {
    width: 100px;
}

header .menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .menu a {
    color: #ffd700;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin: 0 30px;
    padding: 0 10px;
    border-radius: 20px;
    transition: 0.3s;
    transition-property: color, background;
}

header .menu a:hover {
    color: #000;
}

header .btn {
    color: #ffd700;
    font-size: 25px;
    cursor: pointer;
    display: none;
}

@media (max-width: 1060px) {
    header .btn {
        display: block;
    }

    header .menu {
        position: fixed;
        background: #1483d5;
        flex-direction: column;
        width: 100%;
        height: 100%;
        top: 0;
        bottom: 0;
        right: -100%;
        padding: 50px 50px;
        transition: 0.5s;
        transition-property: right;
    }

    header .menu.active {
        right: 0;
    }

    header .menu .close-btn {
        position: absolute;
        top: 0;
        left: 0;
        margin: 25px;
    }

    header .menu a {
        display: block;
        font-size: 15px;
        margin: 20px;
        padding: 0 15px;
    }
}
/*nav end*/

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    transition: 0.5s;
    z-index: 2;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}
.text {
    position: absolute;
    z-index: 10;
    width: 100%;
}

.text h2 {
    font-size: 5em;
    color: #ffd700;
    line-height: 1em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.text p {
    font-size: 1.1em;
    color: #fff;
    margin: 20px 0;
    font-weight: 300;
    width: 80%;
}

.social {
    position: absolute;
    z-index: 10;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social li {
    list-style: none;
}
.social li a {
    display: inline-block;
    margin-right: 40px;
    filter: invert(1);
    transform: scale(0.5);
    transition: 0.5s;
}
.social li a img {
    height: 70px;
}
.social li a:hover {
    transform: scale(0.5) translateY(-25px);
}
@media (max-width: 991px) {
    .social li a {
        width: 10px;
    }
    .text {
        overflow-y: auto;
        left: 10px;
        top: 15%;
        width: 95%;
    }
    .text h2 {
        padding-left: 20px;
        margin-bottom: 10px;
        font-size: 2em;
    }
    .text p {
        height: 60vh;
        overflow-y: auto;
        font-size: 12px;
        padding: 0 10px;
        width: 95%;
    }
    .social {
        bottom: 5px;
        left: 40px;
    }

    .social li a img {
        height: 30px;
    }
}
