@charset "utf-8";
/* CSS Document */


/** Layout **/

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: white;
    color: #222222;
    font-family: "Rubik", "Myriad Pro", Arial, "sans-serif";
}

.hero {
    background: url("images/header-background.webp") no-repeat top;
    background-color: #101010;
    background-size: cover;
    text-shadow: 1px 1px 10px rgb(1, 1, 1, 0.75);
}

    .hero span {
        font-family: "Rubik", sans-serif !important;
    }

    .hero img {
        margin-bottom: 3%;
        margin-right: 2%;
    }

.hero-box {
    background-color: rgb(1, 1, 1, 0.75);
    border-radius: 15px;
    padding: 3%;
}

main {
	margin: auto;
}

	main section {
		padding: 2.5% 5% 3% 5%;
	}

    section section {
        padding: 0;
    }

footer {
	padding: 3%;
	background-color: #2a2626;
	color: white;
}

	footer div section div {
        float: right;
	}

img {
    /*border-radius: 15px;*/
    overflow: hidden;
}

form input, textarea {
	width: 100%;
	margin-bottom: 3%;
	padding: 2%;
	box-sizing: border-box;
	border: 2px solid transparent;
	border-radius: 5px;

	color: #4a4a49;
	font-size: 18px;
	font-family: "Rubik", sans-serif;
}

hr {
    background: #eb5d40;
    margin-bottom: 4%;
    padding: 0;
    height: 5px;
    border: 0;
    border-radius: 5px;
    opacity: 1;
}

    header hr {
        background: #101010;
        margin-bottom: 4%;
        padding: 0;
        height: 5px;
        width: 30%;
        border: 0;
        border-radius: 5px;
        opacity: 1;
    }

    .box-orange hr {
        background: white;
    }

.box-border {
    border: 3px solid #eb5d40;
    border-radius: 15px;
    padding: 2%;
}

.box-orange {
    background: #eb5d40;
    border: 3px solid #eb5d40;
    border-radius: 15px;
    padding: 2%;
    color: white;
}

    .box-orange h2, .box-orange h3, .box-orange h4, .box-orange h5 {
        color: white;
    }

.home-contents-block img {
    box-shadow: 1px 1px 10px rgb(1, 1, 1, 0.75);
}

    .home-contents-block img {
        border-radius: 15px;
    }

.rounded {
    border-radius: 15px;
}



/** Navigation **/

nav {
	padding: 1% 2% 1% 2% !important;
    background: #101010;
    color: white;
}

.nav-link {
    display: inline;
    margin-left: 1.5rem;
    text-transform: uppercase;
    border-radius: 10px;
    font-family: "Rubik", sans-serif;
    font-size: 1rem;
    color: white;
}

    .nav-link:hover {
        color: inherit;
        text-decoration: underline;
        text-underline-offset: 10px;
    }

    .nav-link-current {
        color: #eb5d40;
        text-decoration: underline;
        text-underline-offset: 10px;
    }

.nav-subitem {
    position: fixed;
    display: none;
    background-color: rgb(1, 1, 1, 0.5);
    margin-top: 1px;
    margin-left: 30px;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

    .nav-dropdown:hover .nav-subitem {
        display: block;
    }

    .nav-subitem a {
        font-size: 12px;
    }

.navbar-toggler-icon {
    background-color: #eb5d40 !important;
}



/* Sponsorship table */

.table-shadow {
    box-shadow: 0px 0px 10px rgb(1, 1, 1, 0.5);
    border-radius: 50px 0 50px 0;
    padding: 0;
}

    .table-shadow:hover {
        box-shadow: 0px 0px 30px #f8ac2b;
    }

.table-box {
    border-bottom: 1px dotted grey;
    min-height: 5rem;
}

    .table-box-grey {
        background-color: #fafafa;
    }

    .table-box-top {
        background-color: #eb5d40;
        border-radius: 50px 0 50px 0;
        border-bottom: none;
    }

    .table-box-bottom {
        border-radius: 0 0 50px 0;
        border-bottom: none;

        font-family: "Rubik SemiBold", sans-serif !important;
        font-size: 22px !important;
        color: white;
    }
    
    .table-box-orange {
        background-color: #eb5d40;
    }

    .table-box-yellow {
        background-color: #f8ac2b;
    }

    .table-box-lightyellow {
        background-color: #ffd62f;
    }

    .table-box-pink {
        background-color: #f5ae9f;
    }

.table-package .table-box {
    font-family: "Rubik Italic", sans-serif;
    text-align: center;
}

    .table-package h3 {
        font-size: 22px !important;
        color: white;
        margin-bottom: 0;
    }



/** Alignment **/

.paddingbottom-2 {
    padding-bottom: 2% !important;
}

.paddingbottom-5 {
    padding-bottom: 5% !important;
}

.paddingbottom-10 {
    padding-bottom: 10% !important;
}

.paddingleft-5 {
    padding-left: 3%;
}

.paddingright-5 {
    padding-right: 5%;
}

.marginbottom {
    margin-bottom: 5% !important;
}

.marginright-10 {
    margin-right: 10% !important;
}

.nomargin {
	margin: 0 !important;
}

.nopadding {
	padding: 0 !important;
}



/** Backgrounds **/

.bg-gradient {
    background: linear-gradient(to right, #f16f73, #f7ae66) !important;
}

.bg-dark {
    background: #101010 !important;
}



/** Text **/

h1 {
    font-family: "Rubik SemiBold", sans-serif;
    font-size: 50px;
}

    .hero h1 {
        font-family: "Rubik SemiBold", sans-serif;
        font-size: 58px;
        text-transform: uppercase;
        color: white;
    }

h2, .h2 {
	font-family: "Rubik SemiBold", sans-serif;
    font-size: 36px;
    padding-bottom: 2%;
    color: #eb5d40;
}

    .hero h2 {
        display: inline;
        font-family: "Rubik SemiBold", sans-serif;
        text-transform: uppercase;
        padding-bottom: 0;
        color: white;
    }

h3, .h3 {
	font-family: "Rubik SemiBold", sans-serif;
    font-size: 26px;
    padding-bottom: 1%;
    color: #eb5d40;
}

    .bg-gradient h3, .bg-gradient .h3 {
        font-family: "Rubik", sans-serif;
        color: white !important;
        text-shadow: 2px 2px 4px rgb(1, 1, 1, 0.75);
    }

h4, .h4 {
    font-family: "Rubik SemiBold", sans-serif;
	font-size: 18px;
}

h5 {
	font-family: "Rubik Light-Italic", sans-serif;
	font-size: 16px;
}

p {
	font-family: "Rubik Light", sans-serif;
    font-size: 17px;
}

    .bg-gradient p {
        font-family: "Rubik", sans-serif;
    }

	footer p {
        font-family: "Rubik", sans-serif;
		font-size: 14px;
		line-height: 24px;
        color: #808080;
	}

    footer address p {
        line-height: 28px;
    }

li {
    font-size: 17px !important;
    line-height: 30px;
}

.h404 {
    font-family: "Rubik SemiBold", sans-serif;
    font-size: 160px;
    color: #ef4a50;
}

a {
    font-family: "Rubik Medium", sans-serif;
    text-decoration: none;
    color: #eb5d40;
}
    
    main a {
        font-family: inherit;
        color: inherit;
    }

    nav a {
		text-transform: uppercase;
		color: white;
	}

    p a:hover, h2 a:hover {
        color: #f8ac2b;
    }

    strong a {
        font-family: "Rubik SemiBold", sans-serif;
        color: inherit;
    }

    .contact a {
        font-family: "Rubik", sans-serif;
    }

        .contact a p:hover {
            color: #111111 !important;
        }

ul {
	padding-left: 7%;
}

li {
	font-family: "Rubik Light", sans-serif;
	font-size: 20px;
	padding-left: 0%;
}

	li b, li strong {
		font-family: "Rubik SemiBold";
		font-weight: normal;
	}

    .column li {
        padding-bottom: 1%;
    }

.gradient {
    background: linear-gradient(to right, #f16f73, #f7ae66);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bold {
    font-family: "Rubik SemiBold", sans-serif;
}

.quote {
	font-size: 30px;
	font-family: "Rubik Light-Italic", sans-serif;
	line-height: 48px;
}



/** Buttons **/

.icon {
    margin-right: 2%;
}

    .icon:hover {
        border-radius: 3px;
        box-shadow: 0px 0px 15px #eb5d40;
    }

button {
    background: #eb5d40;
    border-radius: 10px;
    border: 0;
    padding: 1% 3% 1% 3%;
    color: white;
}

    button:hover {
        background: #f8ac2b;
    }

    .box-orange button {
        background: white;
        color: #eb5d40;
    }

.button-preregister {
    background: rgb(235, 94, 64, 0.5);
    border-radius: 15px;
    display: inline-block;
    position: relative;
    padding: 5% 10% 5% 10%;
    box-shadow: 1px 1px 10px rgb(1, 1, 1, 0.75);
}

    .button-preregister:hover {
        background: rgb(235, 94, 64, 1);
    }

    .button-preregister p {
        font-family: "Rubik SemiBold", sans-serif;
        text-align: center;
        text-transform: uppercase;
        font-size: 24px;
        color: white;
        margin: 0;
    }



/** Fonts **/

@font-face {
	font-family: "Rubik";
	font-display: swap;
	src: url("fonts/Rubik-Regular.ttf");
}

@font-face {
	font-family: "Rubik Medium";
	font-display: swap;
	src: url("fonts/Rubik-Medium.ttf");
}

@font-face {
	font-family: "Rubik SemiBold";
	font-display: swap;
	src: url("fonts/Rubik-SemiBold.ttf");
}

@font-face {
	font-family: "Rubik Bold";
	font-display: swap;
	src: url("fonts/Rubik-Bold.ttf");
}

@font-face {
	font-family: "Rubik Light";
	font-display: swap;
	src: url("fonts/Rubik-Light.ttf");
}

@font-face {
	font-family: "Rubik Light-Italic";
	font-display: swap;
	src: url("fonts/Rubik-LightItalic.ttf");
}

@font-face {
	font-family: "Rubik Italic";
	font-display: swap;
	src: url("fonts/Rubik-Italic.ttf");
}