html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1{
    font-size: 2.2vw;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFFFFF;
    -webkit-text-stroke: 1px #000;
}
h1 strong{
    color: #000;
}
h2{
    font-size: 18px;
    margin: 40px 0 20px;
    line-height: 21px;
}
p{
    font-size: 14px;
    line-height: 21px;
}


*{
    box-sizing: border-box;
}

html{
    font-family: "Figtree", sans-serif;
}

header{
    top: 0;
    padding: 30px;
    position: fixed;
}
header .logo{
    width: 100px;
}

.container{
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}
.intro{
    display: flex;
    gap: 0 10%;
    margin: 160px 0 100px;
    align-items: center;
}
.intro__left{
    width: 40%;
}
.intro__right{
    width: 50%;
}
.intro__right .logo{
    max-width: 90%;
    margin-bottom: 40px;
    display: block;
}
video{
    width: 100%;
    height: auto;
}
.intro a{
    padding: 15px 30px;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    text-transform: uppercase;
    margin-top: 40px;
    font-size: 12px;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    transition: all 200ms linear;
}
.intro a img{
    transition: all 200ms linear;
}
.intro a:hover{
    color: #FFF;
    background-color: #000;
}
.intro a:hover img{
    filter: brightness(1000%);
}


footer{
    color: #FFF;
    background-color: #000;
    padding: 60px 20px;
    text-align: center;
}
footer .logo{
    max-width: 100%;
}
footer p{
    margin: 30px 0;
    line-height: 34px;
}
footer a{
    color: #FFF;
    text-decoration: none;
}
.social{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 50px 0 -10px;
}


@media (max-width: 991px){
    header{
        text-align: center;
        position: static;
    }
    h1{
        font-size: 40px;
    }

    .container{
        width: 100%;
        padding: 40px 20px;
    }
    .intro{
        margin-top: 00px;
        flex-direction: column-reverse;
    }
    .intro__left{
        width: 100%;
        margin-top: 60px;
    }
    .intro__right{
        width: 100%;
    }
}