@font-face {
    font-family: "Segoe";
    src: url('./fonts/segoe-ui-light.ttf') format('truetype');
}

@font-face {
    font-family: "Segoe";
    font-weight: bold;
    src: url('./fonts/Segoe-UI-Bold.ttf') format('truetype');
}

body {
    margin: 0;
    background-color: black;
    height: 100%;
        max-height: 100vh;
    overflow: hidden;
}


/*@media screen and (max-width: 768px){*/
/*    body {*/
/*    max-height: 100vh;*/
/*    overflow: hidden;*/
/*    }*/
/*}*/
    
@media screen and (max-width: 768px)  and (orientation: landscape) {
   body {
        max-height: initial;
        overflow: initial;
    }
}

video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-fit: fill;
}

video {
    display: none;
}

video.mobile {
    display: block;
    object-fit: cover;
}

@media screen and (min-width: 769px) {
    video {
        display: block;
    }
    video.mobile {
        display: none;
    }
}

@media screen and (max-width: 768px)  and (orientation: landscape) {
    video {
        display: block;
    }
    video.mobile {
        display: none;
    }
}


@media screen and (max-width: 450px) {

    video.mobile {
        width: 100%;
    height: 135%;
    margin-top: -55%;
    object-position: 53%;
    }
}

.container {
    width: 90%;
    height: 100vh;
    z-index: 1;
    position: relative;
    padding: 0 5%;
}

.header {
    height: 60px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 1s ease-in-out;
}

.header.show {
    transform: translateY(0);
    opacity: 1;
}

.logo_container {
    color: #fff;
    font-weight: bold;
    font-size: 30px;
}

.logo_container img {
    width: 100%;
    max-width: 220px;
}

@media (max-width: 768px) {
    .logo_container img {
        max-width: 160px;
    }
}

.social {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    overflow: hidden;
}

.social svg {
        position: relative;
    width: 170px;
    height: 170px;
    transform: translateY(-52px) translateX(20px);
    fill: #fff;
}

@media (max-width: 768px) {
    .social svg {
        width: 150px;
    height: 150px;
    }
}

.social .inst svg {
    width: 35px;
    height: auto;
    top: -2px;
    position: relative;
}

.social svg a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.main {
    display: flex;
    align-items: center;
    height: calc(100% - 120px);
}

@media (max-width: 768px) {
    .main {
        align-items: flex-end;
    }
}

.main p {
    font-family: "Segoe";
    color: #fff;
    max-width: 500px;
    width: 100%;
    font-size: 25px;
    transition: all 1s ease-in-out;
    transform: translateX(-100%);
    opacity: 0;
}

.main p.show {
    transform: translateX(0);
    opacity: 1;
}

.main p b {
    display: block;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .main p b {
    font-size: 20px;
    margin-bottom: 17px;
    }
    
    .main p {
        font-size: 18px;
        padding-bottom: 60px;
    }
}