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

:root {
    --primary-color: #f48323;
    --secondary-color: #141414;
    --tertiary-color: #3de734;
    --fourth-color: #2394f4;
    --fifth-color: #f4f4f4;
    --shadow-1-primary-color: #fec418;
    --shadow-2-primary-color: #feb518;
    --shadow-1-secondary-color: #1d1f24;
    --shadow-2-secondary-color: #1f2937;
    --text-black: #333333;
    --text-white: #f4f4f4;
    --text-gray: #c3bbbb;
}

::selection {
  color: var(--fifth-color);
  background: var(--primary-color);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Sora';
}

html,
body {
    background-color: var(--secondary-color) !important;
    max-width: 100%;
}

/* COMMON ELEMENT */
h1.title {
    color: var(--primary-color);
    font-size: 110px;
    font-weight: bold;
    line-height: 1em;
}

h2.title {
    color: var(--primary-color);
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

h3.title {
    color: var(--secondary-color);
    font-size: 60px;
    font-weight: bold;
    text-align: left;
}

@media only screen and (max-width: 768px) {
    h1.title {
        font-size: 60px !important;
    }

    h2.title,
    h3.title {
        font-size: 30px !important;
    }
}

.subtitle {
    font-size: 24px;
    text-align: justify;
    font-weight: lighter;
    margin-top: 3vh;
}

@media only screen and (max-width: 768px) {
    .subtitle {
        font-size: 14px;
    }
}

.bold-orange-underline {
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: underline;
}

.text-em-bold {
    font-style: italic;
    text-decoration: underline;
    font-weight: bold;
}

.text-small {
    font-size: 12px !important;
    text-align: justify;
}

@media only screen and (max-width: 768px) {
    .text-small {
        width: 100%;
    }
}

.text-red {
    color: red;
}

.text-white {
    color: var(--text-white);
}

.text-black {
    color: var(--text-black);
}

.btn-orange {
    color: var(--text-white) !important;
    background-color: var(--primary-color) !important;
}

.btn-blue {
    color: var(--text-white) !important;
    background-color: var(--fourth-color) !important;
}

.btn-orange-hover:hover {
    background-color: var(--primary-color) !important;
}

.btn-green-hover:hover {
    background-color: var(--tertiary-color) !important;
}

.btn-blue-hover:hover {
    background-color: var(--fourth-color) !important;
}

.mtop-5 {
    margin-top: 5vh !important;
}

.mtop-3 {
    margin-top: 3rem !important;
}

.ptopbottom-10 {
    padding-top: 10vh;
    padding-bottom: 10vh;
}

@media only screen and (min-width: 992px) {
    .mtop-3 {
        margin-top: 7rem !important;
    }

    .mtop-10 {
        margin-top: 10vh !important;
    }

    .mtop-15 {
        margin-top: 15vh !important;
    }

    .mtop-25 {
        margin-top: 25vh !important;
    }

    .mtopbottom-15 {
        margin-top: 15vh !important;
        margin-bottom: 15vh !important;
    }
}

/* Fix per container overflow */
@media (max-width: 767.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Fix per titoli troppo grandi */
    h2.title {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    /* Fix per bottoni */
    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}