@import url('https://fonts.googleapis.com/css2?family=Candal&family=Open+Sans:wght@400;700&display=swap');


/*=====================================================================================================================
TABLETTE / GLOBAL
=======================================================================================================================*/

* {
    box-sizing: border-box;
    outline: none;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #666;
    font-size: 1.6rem;
    background-color: #fcfcfc;
    line-height: 1.8;
}

#nav, .container, section:not(#entete-hebergement) {
    margin: auto;
    max-width: 90vw;
}

/* ============= GLOBAL - Toutes les navs ==============*/

nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* ============= GLOBAL - Titres et liens ==============*/

nav a, h2, h3 {
    font-family: 'Candal', sans-serif;
    color: #203e4d;
    text-align: center;
}

/* ============= GLOBAL - Tous les liens ==============*/

a {
    text-decoration: none;
}

/* ============= GLOBAL - Toutes les icones ==============*/

i {
   color: #fb8a9b;
}

/* ============= GLOBAL - Tous les paragraphes ==============*/

p {
    text-align: justify;
}


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

/* ============= HEADER - Nav ==============*/

#nav a {
    font-size: 2.2rem;
    margin: 20px;
}

#nav a i {
    display: block;
    padding-bottom: 10px;
    font-size: 3.3rem;
}

#nav a:hover, #nav a.selected {
    color: #fb8a9b;
}

#nav a:hover i, #nav a.selected i {
    color: #203e4d;
}

/* ============= HEADER - Entête-hebergement ==============*/

#entete-hebergement {
    background-image: url("../img/background.jpg");
    background-position: center;
	background-size: cover;
	
	font-family: 'Candal', sans-serif;
	color: #fff;
	text-align: center;
	
	padding: 30px 0;
}

#entete-hebergement h1 {
    font-size: 4.8rem;
}

#entete-hebergement p {
    font-size: 3.2rem;
    text-align: center;
}

/* ============= HEADER - Search ==============*/

.search {
    background-color: #fb8a9b;
}

.search input {
    width: 100%;
    background-color: transparent;
    border : none;
    text-transform: uppercase;
    padding: 20px 0;
    color: #fff;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: .2rem;
}


/*=====================================================================================================================
TABLETTE / MAIN
=======================================================================================================================*/

/* ============= MAIN - Global ==============*/

main i {
    font-size: 4.8rem;
}

main h2 {
    font-size: 3rem;
    margin: 40px 0;
    padding: 10px;
    border: dashed 1px #203e4d;
    border-bottom: none;
    margin-bottom: 50px;
}

main h3, #style-hebergement article p:nth-of-type(1) {
    text-align: center;
    font-size: 2rem;
    color: #fb8a9b;
    font-weight: 900;
}

/* ============= MAIN - Articles ==============*/

main article {
    text-align: center;
    padding: 20px 0;
}


/*=====================================================================================================================
TABLETTE / PAGE-CONTACT
=======================================================================================================================*/

/* ============= MAIN - Articles ==============*/

#contact article p, #contact article address{
    text-align: center;
    padding: 15px;
}

#contact article i {
    width: 100%;
    padding: 20px;
    border-bottom: dashed 1px #fb8a9b;
}

#contact article p a {
    color: #fb8a9b;
}

/* ============= MAIN - Map ==============*/

iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}


/*=====================================================================================================================
TABLETTE / PAGES SERVEUR DEDIE ET SERVEUR MUTUALISE
=======================================================================================================================*/

.serveur article {
    border: dashed 1px #203e4d;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*position: relative;*/
}

.serveur .articles:hover article:not(:hover) {
    opacity: 65%;
} 

.serveur header p:first-of-type {
    padding: 20px;
    margin: 0;
    
    text-align: center;
    font-weight: 900;
    color: #fff;
    
    background-color: #203e4d;
}

.serveur header p:nth-of-type(2) {
    text-align: left;
} 

.serveur li {
    text-indent: 20px;
    list-style-type: circle;
    text-align: left;
    /*align-self: start;*/
}

.serveur footer p:last-of-type {
    text-align: center;
    font-weight: 900;
}

.serveur footer a {
    color: #fff;
    font-weight: 900;
    display: block;
    background-color: #fb8a9b;
    padding: 10px 0;
}

.uppercase {
    text-transform: uppercase;
}

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

#footer {
    text-align: center;
    background-color: #203e4d;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 30px;
}


/* ============= FOOTER - Tous les liens ==============*/

#footer a {
    color: #fff;
}


/* ============= FOOTER - La nav ==============*/

#footer nav {
    padding: 50px;
}

#footer nav a {
    padding: 15px;
}

#footer img {
    width: 50px;
}

#footer p {
    text-align: center;
}



/*=====================================================================================================================
DESKTOP / 
=======================================================================================================================*/

    
@media screen and (min-width:1025px){
    
    
    /* ============= GLOBAL - Toutes les navs ==============*/

    nav {
        flex-direction: row;
    }
    
    /* ============= MAIN - Les sections ==============*/
    
    #entete-hebergement {
        padding: 10% 0;
    }
    
    #style-hebergement, #notre-solution, #contact, .serveur .articles {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    
    article {
        flex-basis: 31%;
    }
    
    h2 {
        flex-basis: 100%;
    }
    
}