* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Inter";
    font-weight: 100;
    src: url("../fonts/Inter-Thin.ttf") format("ttf");
}

@font-face {
    font-family: "Inter";
    font-weight: 200;
    src: url("../fonts/Inter-ExtraLight.ttf") format("ttf");
}

@font-face {
    font-family: "Inter";
    font-weight: 300;
    src: url("../fonts/Inter-Light.ttf") format("ttf");
}

@font-face {
    font-family: "Inter";
    font-weight: 400;
    src: url("../fonts/Inter-Regular.ttf") format("ttf");
}

@font-face {
    font-family: "Inter";
    font-weight: 500;
    src: url("../fonts/Inter-Medium.ttf") format("ttf");
}

@font-face {
    font-family: "Inter";
    font-weight: 600;
    src: url("../fonts/Inter-SemiBold.ttf") format("ttf");
}

@font-face {
    font-family: "Inter";
    font-weight: 700;
    src: url("../fonts/Inter-Bold.ttf") format("ttf");
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    text-decoration: underline;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.between {
    justify-content: space-between;
}

h1 {

}
h2 {
    font-size: 26px;
    line-height: 31.47px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}
h3, h4, h5, h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    margin-bottom: 15px;
    margin-top: 15px;
}
p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 10px;
}

img {
    transition: transform 0.3s ease-in-out;
}
video {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}
button, .btn {
    background-color: #D52037;
    color: #ffffff;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    width: 100%;
    border: none;
}
.link100 {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}
