@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

* {
    font-family: 'Source Sans Pro', sans-serif;
}

:root {
    --color-blue: #0c4a6e;
    --color-blue-hover: #0ea5e9;
    --color-background-black: #121214;
    --color-web-red: #e3003e;
    --color-green: #04d361;
    --color-red: #e83f5b;
    --color-orange: #fd951f;
    --color-orange-hover: #fd951f7d;
    --color-yellow: #f7df1e;
    --color-primary: #8257e6;
    --color-primary-hover: #9466ff;
    --color-info: #001d28;
    --color-info-hover: #06b6d4;
    --color-secondary: #e1e1e6;
    --color-text: #a8a8b3;
    --color-support: #737380;
    --color-shape: #202024;
    --color-shape-hover: #29292e;
    --color-icons: #41414d;
    --color-borders: #323238;
    --color-black: #0d0d0f;
    --color-white: #fff;
}

/**DEFAULT**/
.bg-web-dark{
    background: var(--color-background-black);
}

.bg-web-orange{
    background: var(--color-orange-hover);
}

.bg-web-white{
    background: var(--color-white);
}

.btn-web{
    background-color: var(--color-orange);
}

.btn-web:hover,
.btn-web:active{
    background-color: var(--color-orange-hover);
}

.a-href{
    color: var(--color-shape);
    text-decoration: none;
}

.a-href:hover,
.a-href:active{
    color: var(--color-shape-hover);
    text-decoration: underline;
}

/** TOP **/
.mel_top img{
    width: 135px;
}

/**NAVBAR**/
.navbar-nav .nav-link{
    color: var(--color-white) !important;
    font-size: 15px;
    font-weight: 500;
    border-radius: 7px;
    margin: 0 3px;
    text-align: center;
}

.nav-link:focus, 
.nav-link:hover {
    background-color: var(--color-orange);
    border-radius: 7px;
    color: var(--color-background-black) !important;
}

/*
SLIDE
*/

.j_slide {
    position: relative;
    text-align: center;
}

.j_slide_item {
    display: none;
}

.j_slide_item:first-child {
    display: block;
}

.j_slide_item img {
    width: 100%;
}

.j_slide_nav {
    position: absolute;
    left: 0;
    bottom: 0;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.j_slide_nav span {
    display: inline-block;
    background: var(--color-orange-hover);
    width: 20px;
    height: 20px;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid var(--color-black);
}

.j_slide_nav span:hover,
.j_slide_nav span.active {
    background: var(--color-orange);
}

/*
INFO
 */
.web_section_info_article img{
    width: 50px;
}

/*
CONTACT
 */
/*.web_section_contact_form{
    background-image: url("../image/bg.jpg");
    background-size: cover;
    background-position: center;
}*/

.response_success {
    display: none;
}

.map iframe{
    width: 100%;
    height: 100%;
    position: absolute;
}

.web_section_contact_form .container{
    position: relative;
}