/*TYPOGRAPHIES ET SYMBOLES*/
@import url('https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap');

/*normalize min*/

html,
body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    /* margin: 0; */
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
}

/*CSS général ----*/

body {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #fafafa;
}

header {
    width: 100%;
}

footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* height: 200px; */
    background: #111115;
    text-align: center;
    color: #fdfdfd;
    align-items: center;
    justify-content: center;
    font-family: 'Raleway', cursive;
    padding: 5vh 0;
}

footer a,
footer a:visited {
    color: #fdfdfd;
    font-weight: 700;
}

footer img {
    width: 10%;
    opacity: 0.9;
}

h2 {
    text-align: center;
    /* color: #faac2b;// */
    /* color: #370028; */
    color: #957c54;
    /* color: #F0E68C; */
    font-weight: 600;
    font-size: 29px;
    font-family: 'Special Elite', cursive;
    margin-top: 2em;
}

h3 {
    /* margin: 0; */
}

p {
    /* margin: 1em 0; */
}


/*classes de styles graphiques */

.bg-parallax {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
    width: 100vw;
    height: 100vh;
    background-size: cover;
}

.fat-blue-text {
    color: #21b791;
    font-weight: bold;
    text-align: center;
}

.grey-text {
    color: #7a7a7a;
}

.big-text {
    font-size: 1.5em;
}

.shadow {
    box-shadow: 1px 2px 15px rgba(20, 20, 20, 0.3);
}

.bg-jungle {
    background-image: url('../img/bg-jungle5.jpg');
    background-size: cover;
    background-position: center;
}

.bg-jungle-sc {
    background-image: url('../img/bg-jungle5-sans-cadre.jpg');
    background-size: cover;
    background-position: center;
}

.dark-green-zone {
    background-color: #013333;
    font-family: 'Raleway', sans-serif;
    color: #fdfdfd;
}

.green-zone {
    background-color: #63c69d;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.bg-white {
    background-color: #f8f8f8;
}

.bg-light-grey {
    background-color: #ececec;
}

.bg-light-green {
    background-color: #dcefdc;
}


/*grid system*/
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 4vh 10vw;
    /* padding: 4vh 0; */
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.fullscreen {
    min-height: 100vh;
}

.col-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.col-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 32%;
    background-color: white;
}

.col-3 {
    display: flex;
    width: 25%;
    flex-direction: row;
    align-items: center;
    height: auto;
}

/*css spécifique intro*/
#intro {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Raleway', sans-serif;
}

#intro h1 {
    font-size: 4em;
    margin: 5% 0 0% 0;
}

#intro p {
    font-size: 2.5em;
    margin: 0;
}

#intro a {
    margin: 5% 0;
}

#intro img {
    width: 8%;
    min-width: 120px;
}

#intro span {
    /* margin-top: 5%;  */
    font-size: 1.5em;
    animation: grow-up 3s infinite ease-in-out;
}


#map {
    height: 300px;
    width: 90%;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

@keyframes grow-up {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

/*css spécifique 3 packs*/

#pack-list {
    margin-top: 5vh;
    text-align: center;
}

#pack-list .col-4 {
    transition: 0.5s;
    justify-content: space-between;
}

#pack-list .col-4:nth-child(2) {
    z-index: 10;
    transform: scale(1.1);
}

#pack-list .col-4:nth-child(2):hover {
    transform: scale(1.12);
    cursor: pointer;
}

#pack-list .col-4:not(:nth-child(2)):hover {
    transition: 0.5s;
    z-index: 5;
    transform: scale(1.01);
    cursor: pointer;
}

#pack-list .col-4 div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#pack-list .col-4 ul {
    width: 80%;
}

/*css spécifique réseaux sociaux*/
.go-to-border-bg {
    margin-left: -10vw;
    margin-right: -10vw;
    padding: 5vh 10vw;
    z-index: 3;
}

#social-media div {
    width: 8%;
    min-width: 80px;
    height: auto;
    position: relative;
}

#social-media div img {
    width: 100%;
}


#social-media .anim-picto {
    width: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
}

@keyframes apparition-translate {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(5) translateY(-30px);
        opacity: 0;
    }
}

#social-media div img:hover~.anim-picto {
    animation: apparition-translate 3s infinite ease-out;
}

/*css spécifique autres services*/
#definition-etapes .col-3,
#autres-services .col-3 {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

#autres-services img {
    width: 35%;
}

/*css spécifique contact*/
#devis .map-responsive hr {
    border-radius: 20px;
    border: 2px solid #9B817B;
    width: 34vw;
    margin-bottom: 17%;
}

#devis .map-responsive p {
    font-weight: 300;
    font-family: 'Raleway', cursive;
    text-align: center;
    margin-bottom: 15%;
    color: #957c54;
    font-size: 24px;
}

/*formulaire et boutons */

form {
    width: 100%;
    text-align: center;
}

#devis a {
    font-family: 'Raleway', cursive;
    color: #957c54;
}


.zone-cac {
    padding: 3vh 0;
}

input,
select,
textarea {
    font-family: 'Lato', sans-serif;
    /* font-family: "Raleway", Sans-serif; */
    margin: 1vh 0;
    border: 0;
    border-left: 1px solid #a8a8a8;
}

input,
select,
textarea {
    border: 1px solid #ddd;
    padding: 8px 6px;
    background: #f5f5f5;
    width: 100%;
}

.button {
    display: inline-block;
    border-radius: 100px;
    background-color: #fdfdfd;
    color: #013333;
    text-align: center;
    font-size: 22px;
    padding: 20px 30px;
    transition: all 0.5s;
    cursor: pointer;
    border: none;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
}

.button:hover {
    background-color: rgba(248, 248, 248, 0.9);
    transition: 0.5s;
    z-index: 5;
    transform: scale(1.02);
}

#googleMap {
    background-image: url('../img/map.jpg');
    background-size: cover;
}

/*toogle budget perso */
#budgetPerso {
    opacity: 0.2;
    background-color: #fdfdfd;
}

.switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.switch .checkbox {
    display: none;
}

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

input:checked+.slider {
    background-color: springgreen;
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/*custom scroll bar*/

::-webkit-scrollbar {
    width: 18px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #a8a8a8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    transition: 0.5s;
    background: #111115;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    transition: 0.5s;
    background: #111115;
}

@media screen and (max-width: 1020px) {
    /*les 3 packs se disposent en colonnes*/

    #pack-list {
        flex-direction: column;
        margin-top: 0;
    }

    #pack-list .col-4 {
        width: 100%;
        margin: 5% 0;
        transform: scale(1) !important;
    }
}

@media screen and (max-width: 660px) {

    .container,
    header {
        padding: 0 5vw;
    }

    footer {
        padding: 5vh 5vw;
    }

    /*logo intro*/
    #intro img {
        width: 25%;
    }

    /*logo footer*/
    footer img {
        width: 16%;
    }

    .row {
        flex-direction: column;
    }

    .go-to-border-bg {
        margin-left: -5vw;
        margin-right: -5vw;
        padding: 5vh 5vw;
    }

    #social-media {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    #social-media div {
        width: 25%;
        margin: 5%;
        min-width: 100px;
    }

    .col-3,
    .col-4,
    .col-6 {
        width: 100% !important;
    }

    .map-responsive iframe {
        width: 100%;
    }

    .zone-cac .col-6:nth-child(2) {
        margin-top: 6vh;
    }
}

#instafeed {
    max-width: 1080px;
    width: 100%;
    margin: auto;
    display: flex;
    /* flex-wrap: wrap; */
}

.instagram-js {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.instagram-photo {
    transition: 0.7s;
    display: block;
    width: 100%;
    box-shadow: 1px 2px 15px rgba(20, 20, 20, 0.3);
    padding: 1vh;
}

.instagram-photo:hover {
    transition: 0.7s;
    z-index: 5;
    transform: scale(1.05);
    cursor: pointer;
}