/*Css du mini projet Travel*/

/*Typo*/

@font-face {
    font-family: 'robotobold';
    src: url(../font/roboto-bold-webfont.woff2) format('woff2'),
        url(../font/roboto-bold-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'robotolight';
    src: url(../font/roboto-light-webfont.woff2) format('woff2'),
        url(../font/roboto-light-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'robotomedium';
    src: url(../font/roboto-medium-webfont.woff2) format('woff2'),
        url(../font/roboto-medium-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'robotoregular';
    src: url(../font/roboto-regular-webfont.woff2) format('woff2'),
        url(../font/roboto-regular-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'robotothin';
    src: url(../font/roboto-thin-webfont.woff2) format('woff2'),
        url(../font/roboto-thin-webfont.woff) format('woff');
    font-weight: normal;
    font-style: normal;

}

/*Global*/

* {
    box-sizing: border-box;
}

img,
iframe,
video {
    max-width: 100%;
    vertical-align: middle;
}

* {

    margin: 0;
    padding: 0;
}

.conteneur {

    width: 1200px;
    margin: auto;
}

a {

    text-decoration: none;
    color: #5dc4ad;
    cursor: pointer;
}

a:hover {

    transition: all 0.5s ease;
}

body {

    font-family: 'robotoregular';
    color: #080808;
    line-height: 150%;
}

h1,
h2,
h3,
h4,
h5,
h6 {

    text-transform: uppercase;
    text-align: center;
    font-family: 'robotobold';
}

h2 {

    font-size: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    letter-spacing: 1.15px;
}

p.soustitre {

    text-align: center;
    font-style: italic;
    color: #383838;
}

blockquote
{
  font-style: italic;

}



/*Header*/


video#bgvid {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    background: url(../img/travel-agence-voyage-toulouse_bg-video.jpg) no-repeat;
    background-size: cover;
}

#imagevideo {

    display: none;
    position: fixed;
    z-index: -100;

}

.fond1 {

    background-color: rgba(8, 8, 8, 0.81);
    min-height: 40px;
}

.fond1 .conteneur {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.fond1 .conteneur .contacttop {

    color: #bfbfbf;
    font-family: 'robotobold';
    font-size: 12px;


}

.contacttop,
.socialtop {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 48px;
}

.contacttop p {

    display: block;
    padding-right: 20px;

}

.contacttop .fas {

    padding-right: 5px;
}



.socialtop p {
    display: block;
    font-size: 18px;
    padding-left: 20px;
}



.socialtop a {

    color: #bfbfbf;
}

.socialtop a:hover {

    color: #5dc4ad;
}

/*Menu top*/

.menutop {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 50px;
}


#menu ul {

    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}



#menu ul li a {

    display: block;
    color: #fff;
    padding-left: 30px;
    text-transform: uppercase;
    font-family: 'robotobold';
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 1.25px;
   
}

#menu ul li a:hover {


    color: #5dc4ad;
}


/*Menu mobile*/

#menu-mobile {
    display: none;


}


#menu-mobile .btn {
    cursor: pointer;
    display: block;
    color: #fff;
    font-size: 35px;
    padding-bottom: 20px;
}

#menu-mobile ul {
    padding-top: 0.5rem;
    list-style: none;
}

#menu-mobile li {
    background-color: rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

#menu-mobile a {
    padding: 20px;
    display: block;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}



/*Texte intro*/

.texteintro {

    text-align: center;
    color: #fff;
    line-height: 150%;
    letter-spacing: 1.25px;
    padding-top: 200px;
    padding-bottom: 200px;

}

.texteintro h1 {

    font-size: 40px;
    text-transform: uppercase;
    font-family: 'robotobold';
    display: block;

}

.texteintro p {

    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    display: block;


}

/*Formulaire de demande de devis*/

.fond2 {

    background-color: rgba(69, 147, 131, 0.76);
    padding-top: 30px;
    padding-bottom: 30px;
}

.fond2 .conteneur form {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

p input,
p select {

    border-radius: 3px;
    border: none;
    color: #727272;
    padding-left: 5px;
}

p input {

    min-height: 30px;
}

p select {

    min-height: 24px;
}

p input[type="submit"] {

    background-color: #080808;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
}

p input[type="submit"]:hover {

    color: #5dc4ad;
}

/*Main*/

/*A propos*/

.fond3 {

    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.fond3 h2 {

    color: #080808;

}

.fond3 p.soustitre {

    padding-bottom: 50px;
    text-align: center;
}

.fond3 p {

    text-align: justify;

    padding-bottom: 20px;
}

.fond3 a {

    display: block;
    margin: auto;
    width: 150px;
    text-align: center;
    border-radius: 3px;
    margin-top: 20px;
    padding: 8px;
    background-color: #080808;
    color: #fff;
}

.fond3 a:hover {

    color: #5dc4ad;
}


/*Destinations*/

.fond4 {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-agence-voyage-toulouse_bg-miniatures.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    padding-top: 50px;
    padding-bottom: 50px;
}

.fond4 h2 {

    color: #fff;

}

.fond4 p {

    text-align: center;
    color: #fff;
    padding-bottom: 80px;
}

.mindestination {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.destination {

    height: 370px;
    overflow: hidden;
    margin: 5px 5px 0px 5px;

}


.destination:hover p {
    margin-top: -70px;
    padding-top: 10px;
    padding-bottom: 15px;
    display: block;
    background-color: #080808;
    color: #fff;
    opacity: 0.8;
    transition: all 1s ease;
}



/*Page Maldives*/



#fondmaldives {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-header-maldive.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.fondmaldives2 {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-fond-maldive.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#fondmarin,
.fondmaldives2 .soustitre {

    color: #fff;
    display: block;
}

.galerie {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

.contenugalerie {

    margin-bottom: 20px;

    transition: transform .2s;
     border: 1px dashed #080808;
}

.contenugalerie:hover {

    transform: scale(1.2);
    border: none;
    cursor: pointer;
   
}

.fond6 {
    
    padding: 50px 0px;
    background-color: rgba(93, 196, 173, 0.28);
}

.fond6 .soustitre {
    
    padding-bottom: 50px;
    
}



/*Page Paris*/


#fondparis {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-header-paris.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.fondparis2 {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-fond-paris.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#fondversailles,
.fondparis2 .soustitre {

    color: #fff;
    display: block;
}

/*Page San Francisco*/

#fondsanfrancisco {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-header-sanfrancisco.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.fondsanfrancisco2 {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-fond-sanfrancisco.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#fondpont,
.fondsanfrancisco2 .soustitre {

    color: #fff;
    display: block;
}

/*Page Vietnam*/

#fondvietnam {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-header-vietnam.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.fondvietnam2 {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-fond-vietnam.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#fondfleuve,
.fondvietnam2 .soustitre {

    color: #fff;
    display: block;
}

/*Page A propos*/

#fondapropos {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-header-apropos.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.fondapropos2 {

    background: linear-gradient(rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.45)), url(../img/travel-fond-apropos.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#fondcarte,
.fondapropos2 .soustitre {

    color: #fff;
    display: block;
}

.temoignages {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.temoignages blockquote {
    
    width: 350px;
    text-align: justify;
    padding-bottom: 20px;
    padding-top: 20px;
}

.temoignages cite {
    
    font-style: normal;
    font-weight: 700;
}

.temoignages cite a {
    
    color:#418173;
}

.temoignages cite a:hover {
    
    color:#5dc4ad;
}


/*Nos plus*/

.fond5 {

    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.nosplus {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}



.nosplus p {

    display: block;
    text-align: center;
    max-width: 350px;
    padding-top: 200px;
    padding-right: 10px;
    padding-left: 10px;
    margin: auto;
}


#icone1 {

    background-image: url(../img/agence-voyage-travel_icones-nos-plus-01.png);
    background-repeat: no-repeat;
    background-position: center;

}

.mvmthaut:hover {

    transition-property: transform;
    transition-duration: 1s;
    transition-timing-function: ease;
    transform: translateY(-30px);
    cursor: pointer;
}

#icone2 {

    background-image: url(../img/agence-voyage-travel_icones-nos-plus-02.png);
    background-repeat: no-repeat;
    background-position: center;
}

#icone3 {

    background-image: url(../img/agence-voyage-travel_icones-nos-plus-03.png);
    background-repeat: no-repeat;
    background-position: center;
}

#icone4 {

    background-image: url(../img/agence-voyage-travel_icones-nos-plus-04.png);
    background-repeat: no-repeat;
    background-position: center;
}

#icone5 {

    background-image: url(../img/agence-voyage-travel_icones-nos-plus-05.png);
    background-repeat: no-repeat;
    background-position: center;

}

#icone6 {

    background-image: url(../img/agence-voyage-travel_icones-nos-plus-06.png);
    background-repeat: no-repeat;
    background-position: center;
}






/*Footer1*/


.fondfooter {

    background-color: #080808;
    color: #cecece;
    padding-top: 50px;

}

.fondfooter #footer1 {

    display: flex;
    justify-content: space-between;

    flex-wrap: wrap;
    padding-bottom: 50px;
    font-size: 14px;
}

#footer1 a {

    color: #cecece;
}

#footer1 ul {

    list-style: none;
}

#footer1 h3 {

    padding-bottom: 10px;
    text-align: left;
}

#footer1 li a {


    display: block;
    line-height: 150%;
    padding: 10px 0px 15px 0px;
    border-bottom: 1px solid #5b6366;
}

#footer1 a:hover {

    color: #5dc4ad;
}

#footer1 li:last-child a {

    border-bottom: none;
}



.fleche {

    color: #5dc4ad;
    padding-right: 10px;
}

.menufooter {

    min-width: 250px;
}

.contactinfos p {

    padding-top: 10px;
    line-height: 150%;
}

.contactinfos .fas {

    padding-right: 8px;
}

.contactinfos .fab {

    padding-right: 25px;
    padding-top: 11px;
    font-size: 22px;
}


#totop {

    text-align: center;
    background-color: #5dc4ad;
    cursor: pointer;
    color: #fff;
    width: 45px;
    height: 45px;
    padding: 10px 10px 10px 10px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    cursor: pointer;
    opacity: 0.8;
    border-radius: 50%;
    font-size: 25px;
    opacity: 0;

}

#totop.affiche {

    opacity: 1;
}





/*Formulaire de contact*/

.formulairecontact p {

    margin: 0;
    padding-bottom: 10px;
}

.formulairecontact p:first-child {

    padding-top: 10px;
}

.formulairecontact input[type="text"],
.formulairecontact input[type="email"],
.formulairecontact textarea {

    width: 100%;
    background-color: #222222;
    color: #989898;
    border: none;
}

.formulairecontact input[type="text"],
.formulairecontact input[type="email"] {
    min-height: 30px;
}

.formulairecontact textarea {

    min-height: 40px;

}

.formulairecontact input[placeholder],
.formulairecontact textarea[placeholder] {

    padding-left: 12px;
}

.formulairecontact textarea[placeholder] {

    padding-top: 12px;
}



.formulairecontact input[type="submit"] {

    border-radius: 3px;
    border: none;
    padding: 10px;
    background-color: #5dc4ad;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    float: right;
}


.formulairecontact input[type="submit"]:hover {

    color: #080808;
}




/*Footer2*/

.credits {

    background-color: #292929;
    padding-top: 10px;
    padding-bottom: 10px;
}

#footer2 {

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}
