@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.woff2') format('woff2');
    src: url('../fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;

}

body {
    font-family: 'Gilroy', sans-serif;
    font-weight: normal;
    background-color: rgb(181, 179, 192);
    font-weight: normal;


    margin: 0;

}

.container {
    padding-left: 45px;
    padding-right: 45px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
}




*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6, p {
    margin: 0;
}


.blend-mode {
    mix-blend-mode:difference;
    color: white;
    fill: white;
}


/* Header */

header {
    position: fixed;
    top: 27px;
    left: 45px;
    z-index: 2;
    width: 100%;

}


.header_text {
    position: absolute;
    top: 0;
    right: 50%;
    z-index: 1;
    font-size: 20px;
    font-weight: normal;

    transform: translateX(50%);
}

/* Video */

.video {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* Main */



.h1 {
    padding-bottom: 60px;
    max-width: 1500px;

    font-size: 95px;
    font-weight: normal;
    line-height: 80%;

}

/* footer */

.footer {

    border-top: 1px rgb(255, 255, 255, 0.2) solid;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between;
}

.h2 {
    font-size: 35px;

    font-weight: 400;

    max-width: 863px;
}

.count{
    font-size: 20px;
    display: flex;
    gap: 9px;
    align-items: center;
}


/* Media */

@media (max-width: 1440px) {

    .header_logo svg {
        height: 65px;
        width: 137px;
    }

    .header_text {

        font-size: 16px;
    }

    .h1 {
        padding-bottom: 45px;
        font-size: 70px;
    }

    .footer {

        padding-top: 30px;
    }
    .h2 {
        font-size: 26px;
        max-width: 487px;
        width: 100%;
    }

    .count {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {


    .container {
        padding: 23px 23px 0px 23px;
    }

    .header {
        top: 23px;
        left: 23px;
    }

    .header_logo svg {
        height: 55px;
        width: 120px;
    }

    .h1 {
        padding-bottom: 32px;
        font-size: 50px;
    }

    .footer {

        padding-top: 20px;
    }

    .h2 {
        font-size: 18px;
        max-width: 335px;
        width: 100%;
    }

    .count {
        font-size: 11px;
    }

}

@media (max-width: 464px) {


    .container {
        padding: 16px 16px 0px 16px;
    }

    .header {
        top: 16px;
        left: 16px;
    }

    .header_logo svg {
        height: 55px;
        width: 116px;
    }

    .header_text {
    left: 0;
    top: 145px;
    font-size: 16px;
    max-width: 285px;
    width: 100%;

    transform: translateX(0%);
    }



    .h1 {
        padding-bottom: 45px;

        font-size: 41px;
    }

    .footer {
        flex-direction: column;
        gap:48px;
        padding-bottom: 47px;
        padding-top: 23px;
    }

    .h2 {
        font-size: 20px;
    }

    .count {
        font-size: 16px;
    }

}

