@font-face {
    font-family: 'Halvar';
    src: url('fonts/HalvarBreit-Rg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Halvar';
    src: url('fonts/HalvarBreit-Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Halvar', sans-serif;
    background-color: #0A0A0A;
    margin: 0;
    overflow: hidden;
    height: 100dvh;
}
.background{
    position: relative;
    width: 100%;
    height: 100dvh;
    display: flex;
    z-index: 0;
    overflow: hidden;
    .bg{
        position: absolute;
    }
    .bg-part{
    }
    .bg-part-1, .bg-part-2{
        right: 0;
        bottom: 0;
    }
    .bg-part-1{
        @media(max-width: 1200px){
            width: 121px;
            height: 138px;
        }
    }
    .bg-part-3{
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        object-fit: contain;
        @media(max-width: 1200px){
            img{
                width: 100%; 
            }
        }
    }
    .bg-part-4{
        left: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
    picture, img{
        display: block;
    }
}
.content{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100dvh;
    display: flex;
    .logo{
        position: absolute;
        left: 0;
        right: 0;
        top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        @media(max-width: 1200px){
            svg{
                width: 84px;
                height: 84px;
            }
        }
    }
    .text{
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        h1{
            font-weight: 700;
            font-size: 65px;
            text-transform: uppercase;
            text-align: center;
            color: #fff;
            margin-bottom: 24px;
            @media(max-width: 1200px){
                font-size: 26px;
            }
        }
        p{
            font-weight: 400;
            font-size: 25px;
            text-align: center;
            color: #fff;
            margin: 0;
            @media(max-width: 1200px){
                font-size: 16px;
            }
        }
        .shape{
            svg{
                @media(max-width: 1200px){
                    width: 222px;
                    height: 13px;
                }
            }
        }
    }
}