@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap');

.between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roboto {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}

body {
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-y: auto;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

.section {
    width: 100vw;
    height: 100vh;
    position: relative;
}

.cursor {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1vw;
    height: 1vw;
    border-radius: 100%;
    background-color: #fff;
    transition: height 0.5s ease, width 0.5s ease;
    pointer-events: none;
    mix-blend-mode: difference;
}

.nav {
    width: 90vw;
    position: fixed;
    left: 50%;
    top: 10%;
    transform: translate(-50%, -50%);
}

.nav .top {
    width: 100%;
    height: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .top img {
    height: 100px;
    margin-right: 70px;
}

.dropdown {
    width: 150px;
    position: relative;
    display: inline-block;
}

.dropdown a {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

.dropdown a:hover {
    color: #fff;
}

.dropdown-content {
    display: none;
    padding-top: 30px;
    position: absolute;
    z-index: 1;
}

.dropdown-content a {
    display: block;
    width: 100%;
    text-decoration: none;
    margin: 10px 0;
    opacity: 0.5;
    font-size: 15px;
}

.dropdown-content a:hover {
    opacity: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.footer {
    height: auto;
    color: #fff;
    background-color: #202020;
    padding: 5% 11.5%;
    font-size: 18px;
}

.footer .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer .top h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer .top h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer .top p {
    font-size: 15px;
    font-weight: bold;
    opacity: 0.5;
    margin: 5px 0;
}

.footer .bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer .bottom p {
    font-size: 14px;
    margin: 0;
}

.footer .bottom h3 {
    font-size: 14px;
    opacity: 0.5;
    margin-bottom: 10px;
}


.about {
    height: auto;
    background-color: #191919;
    padding: 105px 12.5% 500px;
}

.about h1 {
    font-size: 12vw;
    color: #dc3326;
    line-height: 12vw;
    margin: 0;
}

.about p {
    font-size: 22px;
    color: #fff;
    margin: 0;
    width: 40%;
    position: absolute;
    right: 6%;
    top: 50%;
}

.one {
    background-color: #dc3326;
    height: 80vh;
    color: #fff;
}

.one h2 {
    /* width: 100%; */
    display: inline-block;
    position: relative;
    font-size: 50px;
    font-weight: bold;
    margin: 20px;
}

.one p {
    position: absolute;
    width: 100%;
    font-size: 20px;
    left: 105%;
    top: 20%;
}

.two {
    height: auto;
    padding: 8% 12%;
}

.box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.two h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 30px;
    color: #dc3326;
}

.two .box p {
    width: 66%;
    font-weight: bold;
    font-size: 20px;
}

.two .sponsor {
    width: 66%;
}

.two .sponsor h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.two .sponsor h4 {
    font-size: 18px;
}

.two .logobox {
    padding-top: 5px;
}

.two .logobox img {
    height: 35px;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}