:root {
    --yellow: #FAA61A;
    --orange: #E54228;
    --dark: #262626;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins';
    src: url(./fonts/Poppins-Regular.ttf);
}
body {
    width: 100%;
    overflow-x: hidden;
    font-family: Poppins;
    background-color: var(--dark);
}

a {
    text-decoration: none;
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

.relative {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.glass-section {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 439px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bg-img {
    width: 424px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(./img/image\ 1.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    mix-blend-mode: luminosity;
    opacity: 0.63;
}

.bg-img::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #d9d9d969;
}

.description {
    width: calc(100% - 424px);
    padding: 0 100px;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

h1 {
    text-transform: uppercase;
    font-size: 36px;
    line-height: 40px;
}

h1 p {
    font-size: 36px;
    line-height: 40px;
}

.link {
    color: var(--yellow);
    font-weight: 700;
    white-space: nowrap;
}

.my-5 {
    margin: 2rem 0;
}

.logo {
    position: relative;
    z-index: 100;
}

.dark {
    width: 100%;
    height: 26px;
    background-color: var(--dark);
    z-index: 10;
    overflow: hidden;
}

.border {
    width: 200%;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-color: var(--yellow);
    background-image: linear-gradient(90deg, transparent 50%, #262626 50%);
    background-size: 48px 48px;
    height: 26px;
    transform: skew(30deg) translateX(-40px);
}

@media screen and (max-width:768px) {
    .glass-section {
        width: 90%;
        flex-direction: column;
        height: auto;
        flex-wrap: nowrap;
    }

    .bg-img {
        height: 240px;
        order: 1;
        width: 100%;
    }

    .description {
        width: 100%;
        padding: 35px 25px;
        order: 2;
    }

    .dark {
        order: 3;
    }

    .relative {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }
}

.glass-section::after {
    content: '';
    width: 125px;
    height: 7px;
    background: #FAA61A;
    display: inline-block;
    position: absolute;
    top: -7px;
    left: 0;
}

@media screen and (min-width:768px) and (max-width:1200px) {
    .glass-section {
        width: 90%;
        justify-content: space-between;
    }

    .bg-img {
        width: 324px;
    }

    .description {
        padding: 0 35px;
        width: calc(100% - 324px);
    }

}