﻿﻿ /*
    --------------------------------------------------

    Theme Name: WDstudio

    file: style.css

    version: 2.0

    author: WDStudio - Stefano Cagol / Andrea Paolazzi 2020

    ---------------------------------------------------
*/





/*
  ============================
    RESET CSS
  ============================
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset per browser vecchi */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}





/*
  ============================
    GENERALI
  ============================
*/

button#responsive-menu-pro-button {
    display: none !important;
}

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-weight: 400;
    scroll-behavior: smooth;
}

@-moz-document url-prefix() {

    body {
        font-weight: lighter !important;
    }

}


/* Risolve problema Bootstrap con MAC e Safari per allineamento griglie */

.row:before, .row:after {
    display: inline-block !important;
}

/* -------------------------------------------------------------------- */


body {
    font-size: 16px;
}

.full-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
}

h1 {
    color: #666666;
    font-size: 3.5em;
    font-family: 'Exo', sans-serif;
}

h2 {
    color: #666666;
    font-size: 3em !important;
    font-family: 'Exo', sans-serif;
}

h3 {
    color: #666666;
    font-size: 2.5em;
    font-family: 'Exo', sans-serif;
}

h4 {
    color: #666666;
    font-size: 1.8em;
    font-family: 'Exo', sans-serif;
}

h5 {
    color: #666666;
    font-size: 1.6em;
    font-family: 'Exo', sans-serif;
}

h6 {
    color: #666666;
    font-size: 1.4em;
    font-family: 'Exo', sans-serif;
}

p {
    color: #008fab;
    font-size: 1em;
    font-family: 'Exo', sans-serif;
    line-height: 1.5em;
}

b, strong {
    font-weight: bold;
}

a:hover, a:focus {
    text-decoration: none !important;
}


/* ----- BARRA SCROLL LATERALE ----- */

/* width */

body::-webkit-scrollbar {
    width: 10px;
}

/* Track */

body::-webkit-scrollbar-track {
    background: #b1b1b1;
}

/* Handle */

body::-webkit-scrollbar-thumb {
    background: #666666;
}

/* -------------------------------- */





/* 
    =============================
    404 ERROR PAGE
    =============================
*/

.quattrozeroquattro {
    background-image: url(http://www.gruppobluecity.it/wp-content/uploads/2018/01/home5.jpg);
    background-size: cover;
}

.inzider {
    background: white;
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 5em;
}

.absoluter {
    padding-top: 14em;
    padding-bottom: 14em;
}





/*
  ============================
    ELEMENTI GENERICI
  ============================
*/

/* ---------- TITOLI ---------- */

.TitoloBlu {
    color: #008fab;
}

.TitoloBluGrosso {
    color: #008fab;
    font-weight: bold;
}

.TitoloBiancoGrosso {
    color: #ffffff;
    font-weight: bold;
}



/* ---------- PULSANTE ---------- */

.PulsanteBlu {
    font-family: 'Exo';
    padding: 1em 2em;
    border: 2px solid #008fab;
    background-color: #008fab;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    vertical-align: middle;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    z-index: 999;
    font-size: 1em;
    border-radius: 5px;
}

    .PulsanteBlu:hover {
        color: #008fab
    }

    .PulsanteBlu:after {
        content: '';
        position: absolute;
        width: 0%;
        height: 100%;
        bottom: 0;
        left: 0;
        background: #ffffff;
        display: block;
        -webkit-transition: width 500ms;
        transition: width 500ms;
        z-index: -1;
    }

    .PulsanteBlu:hover:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        background: #ffffff;
        display: block;
    }


.PulsanteBianco {
    font-family: 'Exo';
    padding: 1em 2em;
    border: 2px solid #008fab;
    color: #008fab;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    vertical-align: middle;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    z-index: 999;
    font-size: 1em;
    border-radius: 5px;
}

    .PulsanteBianco:hover {
        color: white
    }

    .PulsanteBianco:after {
        content: '';
        position: absolute;
        width: 0%;
        height: 100%;
        bottom: 0;
        left: 0;
        background: #008fab;
        display: block;
        -webkit-transition: width 500ms;
        transition: width 500ms;
        z-index: -1;
    }

    .PulsanteBianco:hover:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
        background: #008fab;
        display: block;
    }



/* ---------- BACK TO TOP ---------- */

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
}

    #return-to-top i {
        color: #fff;
        margin: 0;
        position: relative;
        left: 16px;
        top: 13px;
        font-size: 19px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    #return-to-top:hover {
        background: rgba(0, 0, 0, 0.9);
    }

        #return-to-top:hover i {
            color: #fff;
            top: 5px;
        }







/*
  ============================
    MENU
  ============================
*/

.menu-item {
    display: inline-block;
    margin-right: 3em;
}

    .menu-item a {
        font-family: 'Exo';
        text-transform: uppercase;
        color: #008fab !important;
    }

    .current-menu-item {
        font-weight: bold;
    }

a.responsive-menu-pro-item-link {
    color: #ffffff !important;
}







/*
  ============================
    HEADER
  ============================
*/

header {
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    position: fixed;
    overflow: hidden;
    transition: 0.2s;
}

.containerlogo {
    display: flex;
    align-items: center;
    position: relative;
    margin: auto 10em;
    height: inherit;
}

.LogoSito img {
    margin: 0 auto;
    width: 60%;
    transition: 0.2s;
}

.AnimazioneMenu {
    padding: 10px 0;
    background-color: #ffffff;
}

    .AnimazioneMenu .menu-item a {
        color: #008fab !important;
        transition: 0.2s;
    }

    .AnimazioneMenu .LogoBlu {
        width: 30%;
    }





/* 
    =============================
    FOOTER
    =============================
*/

.footer {
    background: #ffffff;
    padding: 3em 0;
    display: flex;
    align-items: center;
    position: relative;
    margin: auto 10em;
    height: inherit;
}

    .footer p, .footer a {
        color: #257a8e;
    }

    .footer img {
        margin: 0 auto;
        width: 40%;
    }


/* COME RAGGIUNGERCI */

.ComeRaggiungerci {
    background-color: #f2f2f2;
    padding: 5em 0;
}

.TestoComeRaggiungerci h4 {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 2em;
}

.TestoComeRaggiungerci p {
    color: #257a8e;
    margin-bottom: 3em;
}

.MappaHome {
    text-align: center;
}

    .MappaHome a {
        margin-top: 3em;
    }








/* 
    =============================
    HOMEPAGE
    =============================
*/

/* INTESTAZIONE */

.IntestazioneHome {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.TitoloHome {
    position: absolute;
    bottom: 36vh;
    left: 12em;
}

    .TitoloHome .TitoloBluGrosso {
        margin-bottom: 0.5em;
    }

    .TitoloHome a {
        margin-right: 1.1em;
    }

.AnchorHeader img {
    position: absolute;
    top: 85vh;
    left: 48%;
    width: 3.5%;
    transition: 0.2s;
}

    .AnchorHeader img:hover {
        transform: translateY(-15px);
    }


/* BENVENUTI */

.Benvenuti {
    background-color: #c5e2e8;
    padding: 5em 0;
}

.TitoloBenvenuti {
    text-align: right;
}

    .TitoloBenvenuti h4 {
        text-transform: uppercase;
    }

.TestoBenvenuti {
    text-align: justify;
}

    .TestoBenvenuti p {
        color: #257a8e;
    }


/* PUNTI DI FORZA */

.TitoloPuntiForza {
    padding-top: 5em;
    text-align: center;
}

.TitoloPuntiForza h4 {
    text-transform: uppercase;
    margin: 0 auto;
}

i.material-icons {
    font-size: 3em;
    color: #257a8e;
}

.ListaPunti {
    padding-bottom: 5em;
}

    .ListaPunti img {
        width: 50%;
    }

    .ListaPunti h6 {
        color: #257a8e;
        margin-top: 1em;
        transition: 0.2s;
    }

        .ListaPunti h6:hover {
            font-weight: bold;
        }


.Punto {
    text-align: center;
    margin: 2em 0;
}


/* SLOGAN */

.Slogan {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

    .Slogan h2 {
        text-align: center;
        text-transform: uppercase;
        padding: 5em 0;
        position: relative;
        z-index: 10;
    }

    .Slogan:after {
        content: '';
        background-color: rgba(0, 0, 0, 0.2);
        position: absolute;
        z-index: 5;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


/* TRATTAMENTI */

.Trattamenti {
    background-color: #a8d8e2;
    padding: 5em 0;
}

.TestoTrattamenti {
    text-align: right;
    margin-top: 1em;
}

    .TestoTrattamenti h4 {
        text-transform: uppercase;
        margin-bottom: 1em;
    }

    .TestoTrattamenti p {
        color: #257a8e;
        margin-bottom: 1.5em;
    }

.Trattamento {
    text-align: center;
    background-color: #008fab;
    border-radius: 5px;
}

    .Trattamento:hover {
        cursor: pointer;
		background: transparent;
		margin: 0 auto;
		box-shadow: inset 0px 0px 0px 3px #008fab;
    }

    .Trattamento img {
        width: 35%;
        padding-top: 0.5em;
    }

    .Trattamento p {
        color: #ffffff;
        text-align: center;
        margin-top: 0.5em;
    }

.ImmDecorazioneHome1 {
    position: absolute;
    left: -10em;
    bottom: -30em;
}

.ImmDecorazioneHome2 {
    position: absolute;
    transform: rotate(90deg);
    right: -8em;
    top: -6em;
}

.ImmDecorazioneHome3 {
    position: absolute;
    transform: rotate(-90deg);
    left: -7em;
}








/* 
    =============================
    STUDIO
    =============================
*/

/* TRATTAMENTI */

.IntestazioneStudio {
    background-position: 50% 38%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}

.Studio i.material-icons {
    font-size: 3em;
    color: #ffffff;
}

.AnchorHeader {
    position: absolute;
    top: 55vh;
    left: 49%;
    width: 3.5%;
    transition: 0.2s;
}

    .AnchorHeader:hover {
        transform: translateY(-15px);
    }

.Studio i.material-icons {
    font-size: 3em;
    color: #ffffff;
}


/* DOTTORE */

.Dottore {
    background-color:  #c5e2e8;
    padding-top: 5em;
    text-align: center;
}

.TitoloDottore h4 {
    text-transform: uppercase;
    line-height: 1.2em;
}

.FotoDottore .TitoloBlu {
    text-transform: uppercase;
    margin-top: 1em;
}

.TestoDottore {
    margin: 3em 0;
    color: #008fab;
}


/* SQUADRA */

.Squadra {
    background-color:  #c5e2e8;
    padding: 5em 0;
    text-align: center;
}

.FotoDottore {
    margin: 1em 0;
}

.ImmDecorazioneStudio1 {
    position: absolute;
    transform: rotate(90deg);
    right: -14em;
    top: 75em;
    width: 35%;
}

.ImmDecorazioneStudio2 {
    position: absolute;
    left: -10em;
    top: 135em;
}

.ImmDecorazioneStudio3 {
    position: absolute;
    transform: rotate(-90deg);
    left: -10em;
}















/* 
    =============================
    TERAPIE E TECNOLOGIA
    =============================
*/

.DottoreChiSiamo {
    padding: 5em 0;
}

.CosaOffriamoTecnologia {
    text-align: center;
	padding: 5em 0;
}

.CosaOffriamoTecnologia .TitoloBiancoGrosso{
    margin-bottom:3em;
}

.PuntoAlta p {
    text-align: left;
}

.FotoAltaTecnologia {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    margin: 0 auto;
}

.PuntoAlta h5, .PuntoAlta img{
    margin-bottom:1em;
}

.padding-top-alta{
    padding-top:3em;
}

.PuntoAlta img {
    width: 100%;
    max-height: 350px;
}

.Vantaggi {
    padding: 5em 0;
    text-align: center;
}

    .Vantaggi .TitoloBluGrosso {
        margin-bottom: 0.6em;
    }

    .Vantaggi p {
        text-align: left;
    }

.Vantaggio {
    margin: 1.5em 0;
    text-align: left;
}

	.Vantaggio .TitoloBluGrosso {
		margin-bottom: 0;
	}




/* 
    =============================
    TERAPIE E TRATTAMENTI
    =============================
*/
.IntestazioneTerapieTrattamenti {
    background-position: 50% 38%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}

.TerapieTrattamenti i.material-icons {
    font-size: 3em;
    color: #ffffff;
}

.TabTerapie {
    padding: 5em 0;
    background-color:  #c5e2e8;
}

    .TabTerapie img {
        width: 100%;
    }

    .TabTerapie p {
        font-weight: 400;
    }

.TitoloTerapie h4 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0.3em;
}

.TitoloTerapie p {
    text-align: center;
    margin-bottom: 3em;
    color: #008fab;
}

/* TABS */

div#tabs {
    border: none;
    background: transparent;
}

ul.ui-tabs-nav.ui-corner-all.ui-helper-reset.ui-helper-clearfix.ui-widget-header {
    height: 100%;
    background-color: transparent;
    border: none;
}

li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab a {
    font-family: 'Exo', sans-serif;
}

li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab.ui-tabs-active.ui-state-active a {
    color: #008fab !important;
    font-weight: bold;
}

a.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab.ui-tabs-active.ui-state-active {
    color: #008fab !important;
}

li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab {
    border-radius: 5px;
    padding: 1.2em 0;
    background: #008fab;
    border: none;
    text-align: center;
    margin-bottom: 0.5em;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: none;
    color: #ffffff;
    padding: 0;
    text-decoration: none;
    border: none;
}

li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab {
	min-width: 190px !important;
}

	li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab.ui-tabs-active.ui-state-active {
		cursor: pointer;
		background: transparent;
		margin: 0 auto;
		border-left: 3px solid #008fab;
		border-right: 3px solid #a0d0b4;
		background-position: 0 0, 0 100%;
		background-repeat: no-repeat;
		-webkit-background-size: 100% 3px;
		-moz-background-size: 100% 3px;
		background-size: 100% 3px;
		background-image: -webkit-linear-gradient(left, #008fab 0%, #a0d0b4 100%), -webkit-linear-gradient(left, #008fab 0%, #a0d0b4 100%);
		background-image: -moz-linear-gradient(left, #008fab 0%, #a0d0b4 100%), -moz-linear-gradient(left, #008fab 0%, #a0d0b4 100%);
		background-image: -o-linear-gradient(left, #008fab 0%, #a0d0b4 100%), -o-linear-gradient(left, #008fab 0%, #a0d0b4 100%);
		background-image: linear-gradient(to right, #008fab 0%, #a0d0b4 100%), linear-gradient(to right, #008fab 0%, #a0d0b4 100%);
		margin-bottom: 0.5em;
		min-width: 190px !important;
	}

        li.ui-tabs-tab.ui-corner-top.ui-state-default.ui-tab.ui-tabs-active.ui-state-active:after {
            content: '>';
            position: absolute;
            right: -20px;
            color: #008fab;
            font-weight: bold;
            font-size: 1.2em;
        }

li.ui-tabs-tab {
    width: 100%;
}

.ui-tabs-panel p {
	text-align: justify;
    color: #008fab;
    margin-bottom: 2em;
}

.ui-tabs .ui-tabs-panel {
    padding: 0em 1.4em;
}

.ImmDecorazioneTerapie {
    position: absolute;
    width: 30%;
    bottom: -37em;
    left: -6em;
}





/* 
    =============================
    CONVENZIONI
    =============================
*/

.Convenzioni {
	padding: 5em 0;
	text-align: center;
}

.PuntoAlta {
    text-align: left;
    margin: 2em 0;
}





/* 
    =============================
    CHI SIAMO
    =============================
*/

.IntestazioneChiSiamo {
    background-position: 50% 38%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}

.ChiSiamo i.material-icons {
    font-size: 3em;
    color: #ffffff;
}


/* DOTTORE CHI SIAMO */

.DottoreChiSiamo {
    background-color:  #c5e2e8;
    text-align: center;
}

.FotoDentista {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    width: 300px;
    margin: 0 auto;
}

.TitoloDottoreChiSiamo h4 {
    text-transform: uppercase;
    line-height: 1.2em;
}

.TestoDottoreChiSiamo {
    margin-bottom: 3em;
    margin-top: 1em;
    color: #008fab;
    text-align: left;
}


/* COSA OFFRIAMO */

.TitoloCosaOffriamo {
    padding-top: 2m;
    padding-bottom: 2em;
    text-align: center;
}

    .TitoloCosaOffriamo h4 {
        text-transform: uppercase;
        margin: 0 auto;
    }

i.material-icons {
    font-size: 3em;
    color: #257a8e;
}

.CosaOffriamo {
    background-color:  #c5e2e8;
    padding: 5em 0;
	padding-top: 0;
}

    .CosaOffriamo img {
        width: 50%;
    }

    .CosaOffriamo h6 {
        color: #257a8e;
        font-weight: bold;
        margin-top: 1em;
    }

    .CosaOffriamo .TitoloBiancoGrosso {
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 2em;
        margin-top: 3em;
    }

.Punto {
    text-align: center;
    margin: 2em 0;
}

.ImmDecorazioneChiSiamo1 {
    position: absolute;
    transform: rotate(90deg);
    right: -7em;
}

.ImmDecorazioneChiSiamo2 {
    position: absolute;
    transform: rotate(-90deg);
    left: -10em;
    width: 25% !important;
    bottom: -80em;
}













/* 
    =============================
    CONTATTI
    =============================
*/


.IntestazioneContatti {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
}

.Contatti i.material-icons {
    font-size: 3em;
    color: #ffffff;
}

.FormContatti {
    background-color:  #c5e2e8;
    padding: 5em 0;
    text-align: center;
}


/* FORM CONTATTO */

input.wpcf7-form-control.wpcf7-text {
    background: none;
    border: none;
    border-bottom: 2px solid #008fab;
    padding-top: 2em;
}

form.wpcf7-form {
    margin-top: 3em;
}

input.wpcf7-form-control.wpcf7-submit {
    padding: 0.5em 2em;
    border: 2px solid #008fab;
    background-color: #008fab;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    vertical-align: middle;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    z-index: 999;
    font-size: 1em;
    border-radius: 5px;
    margin-top: 2em;
}

span.ajax-loader {
    display: none !important;
}






















