/* ############################################################################ */
/* FONT */
/* ############################################################################ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');


/* ############################################################################ */
/* GENERALI */
/* ############################################################################ */

* {
    font-family: var(--main-font);
}

i {
    font-family: var(--fontawesome-font);
}


/* ############################################################################ */
/* VARIABILI CSS GLOBALI */
/* ############################################################################ */

:root {
    /* PALETTE COLORI DEL TEMA */
    --first-color: #D9000D;
    --second-color: #1F2157;
    --third-color: #333333;

    --gray-color: #f5f5f5;
    --gray-color2: #83878A;
    --gray-color3: #00000029;

    --black-color: #060716;
    --white-color: #ffffff;

    --breadcrumbs-color: #9c9c9c;
    --copyright-color: #cfcfcf;

    /* FONT DEL TEMA */
    --main-font: "Noto Sans", sans-serif;
    --title-font: "Oswald", sans-serif;
    --fontawesome-font: "Font Awesome 6 Pro" !important;
}


/* ############################################################################ */
/* SFONDI BACKGROUND */
/* ############################################################################ */

.bg-first {
    background-color: var(--first-color);
}

.bg-second {
    background-color: var(--second-color);
}

.bg-third {
    background-color: var(--third-color);
}

.bg-black-color {
    background-color: var(--black-color);
}

.bg-gray-color {
    background-color: var(--gray-color);
}

.bg-gray-color2 {
    background-color: var(--gray-color2);
}


/* ############################################################################ */
/* DIMENSIONI TESTO */
/* ############################################################################ */

p {
    line-height: 30px;
    font-size: 16px;
}

a:hover {
    color: var(--first-color);
}

.section-label {
    font-family: var(--title-font);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: var(--first-color);
    position: relative;
}

.section-label:before {
    content: '';
    height: 2px;
    width: 50px;
    background-color: var(--first-color);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.heading-1,
#editor h1 {
    font-family: var(--title-font);
    font-size: 56px;
    font-family: var(--title-font);
    font-weight: normal;
}

.heading-2,
#editor h2 {
    font-family: var(--title-font);
    font-size: 42px;
    font-family: var(--title-font);
    font-weight: normal;
    margin-bottom: 30px;
}

.heading-3,
#editor h3 {
    font-family: var(--title-font);
    font-size: 32px;
    font-family: var(--title-font);
    font-weight: normal;
    margin-bottom: 20px;
    color: var(--first-color);
    line-height: 45px;
}

.heading-4,
#editor h4 {
    font-family: var(--title-font);
    font-size: 32px;
    font-family: var(--title-font);
    font-weight: normal;
}

.heading-5,
#editor h5 {
    font-family: var(--title-font);
    font-size: 28px;
    font-family: var(--title-font);
    font-weight: normal;
}

.heading-6,
#editor h6 {
    font-family: var(--title-font);
    font-size: 20px;
    font-family: var(--title-font);
    font-weight: normal;
}

.paragraph {
    font-size: 16px;
}

#editor ul {
    padding: 0;
    list-style-position: inside;
    margin: 0;
    margin-bottom: 30px;
    list-style-type: none;
}

#editor ul li {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 30px;
}

#editor ul li::before {
    content: "•";
    color: var(--second-color);
    font-weight: bold;
    display: inline-block;
    font-size: 25px;
    margin-right: 5px;
    line-height: 25px;
    position: relative;
    top: 5px;
}

#editor ul li ul {
    padding-left: 25px;
    padding-top: 5px;
    margin-bottom: 0;
}

#editor ul li ul li::before {
    content: "-";
    font-weight: 400;
    color: #000;
    top: 2px;
}

#editor a:not(.btn-1) {
    color: var(--first-color);
    transition: .1s ease-in-out;
    font-size: 16px;
    margin-right: 5px;
}

#editor a:not(.btn-1):hover {
    opacity: .6;
}


/* ############################################################################ */
/* COLORI TESTO */
/* ############################################################################ */

.first-color {
    color: var(--first-color);
}

.second-color {
    color: var(--second-color) !important;
}

.third-color {
    color: var(--third-color);
}

.gray-color {
    color: var(--gray-color);
}

.gray-color2 {
    color: var(--gray-color2);
}

.black-color {
    color: var(--black-color);
}


.copyright-color {
    color: var(--copyright-color);
}



/* ############################################################################ */
/* PULSANTI */
/* ############################################################################ */

a {
    color: #000;
}

a:hover {
    text-decoration: none;
}

main a:hover {
    text-decoration: none;
    color: var(--second-color);
}

.btn-1,
#editor .btn-1 {
    display: inline-block;
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid var(--first-color);
    border-radius: 10px !important;
    background-color: var(--first-color);
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    transition: 0.15s ease-in-out;
}

.btn-1:after {
    content: '\f105';
    font-family: "Font Awesome 6 Pro";
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-left: 10px;
    position: relative;
    bottom: 0;
    transition: 0.15s ease-in-out;
}

.btn-1:hover,
#editor .btn-1:hover {
    border-color: var(--second-color);
    color: #ffffff;
    background-color: var(--second-color);
}

.btn-2 {
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid var(--first-color);
    border-radius: 10px;
    background-color: var(--first-color);
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    transition: 0.15s ease-in-out;
}

.btn-2:after {
    content: '\f105';
    font-family: "Font Awesome 6 Pro";
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-left: 10px;
    position: relative;
    bottom: -1px;
    transition: 0.15s ease-in-out;
}

.btn-2:hover {
    border-color: var(--first-color);
    color: var(--first-color);
    background-color: transparent;
}

.btn-2:hover:after {
    color: var(--first-color) !important;
}

#gform_submit_button_1,
#gform_submit_button_2 {
    font-family: var(--main-font) !important;
    text-decoration: none;
    padding: 17px 40px !important;
    border: 2px solid var(--first-color);
    background-color: var(--first-color);
    border-radius: 10px !important;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.15s ease-in-out;
    text-transform: uppercase;
}

#gform_submit_button_1:hover,
#gform_submit_button_2:hover {
    border-color: var(--first-color);
    color: var(--first-color);
    background-color: transparent;
}