/*-------------------------------
----------VARIABILI CSS----------
-------------------------------*/

:root {
    --blue-color: #195259;
    --blue-color2: #6C878E;
    --blue-color3: #6BA6AE;
    --red-color: #E84E0F;
    --light-color: #D9D9D9;
    --black-color: #000000;
    --border-solid-color: #D8D8D8;
    --border-solid-table-color: #DDD;
    --white-color: #FFFFFF;

    --title-font: 'ITC Avant Garde Gothic Std Bold';
    --text-font: 'ITC Avant Garde Gothic Std Book';
}

/*-------------------------------
-------------ASSETS-------------
-------------------------------*/
body {
    line-height: 28px;
}

main {
    min-height: 40vh;
}

@font-face {
    font-family: 'ITC Avant Garde Gothic Std Bold';
    src: url('../font/ITC-Avant-Garde-Gothic-Std-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'ITC Avant Garde Gothic Std Book';
    src: url('../font/ITCAvantGardeStd-Bk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.fa-sharp {
    font-family: 'FontAwesome Pro 6';
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--title-font);
}


.title-white h1,
.title-white .h1,
.title-white h2,
.title-white .h2,
.title-white h3,
.title-white .h3,
.title-white h4,
.title-white .h4,
.title-white h5,
.title-white .h5,
.title-white h6,
.title-white .h6 {
    color: var(--white-color);
}

h2,
.h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: calc(36px*1.2);
    color: var(--blue-color2);
}

a {
    text-decoration: none;
    color: var(--black-color);
    transition: 0.2s ease-in-out;
}

a:hover {
    color: var(--red-color);
}

p {
    font-family: var(--text-font);
}

.fs-small {
    font-size: 14px;
}

.blue-bg {
    background-color: var(--blue-color);
}

.blue-bg-80 {
    background-color: rgba(0, 39, 106, 0.8);
}

.red-bg {
    background-color: var(--red-color);
}

.light-bg {
    background-color: var(--light-color);
}

.overlay-image-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.overlay-image-bg:after {
    content: '';
    background-color: var(--blue-color);
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.overlay-image-bg__content {
    position: relative;
    z-index: 2;
}

.container-small {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    max-width: 800px;
    margin: 0 auto;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.blue-text {
    color: var(--blue-color);
}

.blue-text2 {
    color: var(--blue-color2);
}

.blue-text3 {
    color: var(--blue-color3);
}

.red-text {
    color: var(--red-color);
}

.black-text {
    color: var(--black-color);
}

.white-text {
    color: var(--white-color);
}

*:focus-visible {
    outline: none;
}

.red-button {
    font-family: var(--title-font);
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--red-color);
    padding: 20px 60px;
    transition: 0.2s ease-in-out;
    font-weight: 700;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid #ffffff;
}

.red-button__arrow {
    height: 19px;
    margin-left: 8px;
}

.red-button:hover {
    background-color: #bc1d28;
    color: var(--white-color);
}

.white-button {
    font-family: var(--title-font);
    text-transform: uppercase;
    color: var(--blue-color);
    background-color: var(--white-color);
    padding: 20px 60px;
    transition: 0.2s ease-in-out;
    font-weight: 700;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}

.white-button:hover {
    background-color: var(--red-color);
    color: var(--white-color);
}

.green-button {
    font-family: var(--title-font);
    text-transform: uppercase;
    color: var(--white-color);
    background-color: var(--blue-color);
    padding: 0 15px 0 10px;
    height: 56px;
    transition: 0.2s ease-in-out;
    font-weight: 700;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    display: flex;
    align-items: center;
	font-size: 14px
}

.green-button:hover {
    background-color: var(--blue-color2);
    color: var(--white-color);
}