/*GENERAL*/
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    font-size: 15px;
    background-color: none;
    height: 100%;
}

h1 {
    font-family: 'The Girl Next Door', cursive;
    font-size: 7vh;
    color: white;
}

h2 {
    font-family: 'The Girl Next Door', cursive;
    font-size: 5vh;
    color: #97684E;
    font-weight: 500;

}

h3 {
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 100;
    font-size: 40px;
}

h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 30px;
    font-weight: 100;
}

p {
    line-height: 3vh;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

i {
    color: #c1a186;
}

/* ================= HEADER
=========================== */
.site-navigation {
    position: absolute;
    top: 4.6%;
    width: 100%;
    z-index: 2;
}

.site-navigation-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.main-navigation {
    color: #fff;
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    background: #000;
    opacity: 0.9;
}

.main-navigation .main-navigation__ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 12vh;
}

.main-navigation .main-navigation__ul li {
    margin-bottom: 20px;
    list-style: none;
}

.main-navigation .main-navigation__ul a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.5s ease-in;
    font-family: "Lato", sans-serif;
    font-size: 4vh;
    font-weight: 300;
    letter-spacing: 1vh;
    margin-bottom: 10px;
}

.main-navigation .main-navigation__ul a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #C1A186;
    transition: width .3s;
}

.main-navigation .main-navigation__ul a:hover::after {
    color: #C1A186;
    width: 100%;
}

@media (max-width: 1150px) {
    .main-navigation {
        opacity: 0.94;
    }
}

/* Navigation burger */
.burger-container {
    cursor: pointer;
    z-index: 3;
}

.bar1,
.bar2,
.bar3 {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: rotate(-45deg) translate(-6px, 6px);
    background-color: #c1a186;
}

.change .bar2 {
    opacity: 0;
    background-color: #c1a186;
}

.change .bar3 {
    transform: rotate(45deg) translate(-6px, -7px);
    background-color: #c1a186;
}

.stop-scroll {
    overflow: hidden;
}

@media screen and (max-width:700px) {
    .site-navigation-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logo-voyage {
        margin-bottom: 20px;
    }

    .hero h1 {
        padding: 80px 0 30px 0;
        font-size: 4vh;
    }
}

/* Navigation burger end */


.header-home {
    width: 100%;
    background: url('../images/hero/beach-view.jpg');
    background-size: cover;
    background-attachment: fixed;
    height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.nav-wrap-home {
    top: 0;
    height: 12vh;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 20px;
}

nav ul {
    display: flex;
    width: 60vh;
    justify-content: space-around;
    padding-right: 40px;
}

.nav-wrap-home ul li a {
    font-size: 17px;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    transition: color 0.5s ease;
    color: white;
    transition: 300ms;
    border-bottom: 2px solid transparent;
    padding-bottom: 10px;
    transition: color 0.5s ease-in-out;
    color: white;
}

.nav-wrap-home ul li a:hover {
    color: #C1A186;
}

.nav-wrap-home .icon {
    display: none;
}

.logo-voyage img {
    font-family: "The Girl Next Door";
    font-size: 30px;
    color: white;
    padding-left: 40px;
    -webkit-transition: -webkit-transform .8s ease-in-out;
    -moz-transition: -moz-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
}

.logo-voyage img:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
    cursor: pointer;
}

.hero {
    margin: 200px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.hero h1 {
    text-align: center;
    margin-bottom: 30px;
    line-height: 10vh;
    color: white;
}

.button-1 {
    font-size: 19px;
    font-family: "raleway", sans-serif;
    color: #FAF4ED;
    width: 40vh;
    letter-spacing: 1px;
    text-align: center;
    padding: 15px 20px;
    border: 2px solid #FAF4ED;
    background-color: rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    -webkit-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
}

.button-1:hover {
    transform: scale(1.01) translate(0, -5px);
    box-shadow: 0px 10px 20px -5px rgba(0, 0, 0, 0.5);
}

/* SCROLL DOWN */

@-webkit-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@-moz-keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

@keyframes ani-mouse {
    0% {
        opacity: 1;
        top: 29%;
    }

    15% {
        opacity: 1;
        top: 50%;
    }

    50% {
        opacity: 0;
        top: 50%;
    }

    100% {
        opacity: 0;
        top: 29%;
    }
}

.scroll-btn {
    display: block;
    position: relative;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: 150px;
}

.scroll-btn > * {
    display: inline-block;
    line-height: 18px;
    font-size: 13px;
    font-weight: normal;
    color: #7f8c8d;
    color: #ffffff;
    font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 2px;
}

.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
    color: #ffffff;
}

.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.scroll-btn .mouse {
    position: relative;
    display: block;
    width: 35px;
    height: 55px;
    margin: 0 auto 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid white;
    border-radius: 23px;
}

.scroll-btn .mouse > * {
    position: absolute;
    display: block;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: white;
    border-radius: 50%;
    -webkit-animation: ani-mouse 2.5s linear infinite;
    -moz-animation: ani-mouse 2.5s linear infinite;
    animation: ani-mouse 2.5s linear infinite;
}


/* STEPS ==============
======================*/
#steps {
    padding: 50px 0;
}

#steps h2 {
    font-size: 8vh;
    text-align: center;
    letter-spacing: 5px;
    margin-bottom: 40px;
}

#steps i {
    font-size: 6vh;
}

.steps-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 15px;
}

.step img {
    width: 150px;
    height: auto;
}

.step h3 {
    padding: 20px 0;
    font-size: 4vh;
    font-family: "Roboto slab", serif;
    font-weight: 100;
    letter-spacing: 1px;
}

.step p {
    font-size: 14px;
    width: 50vh;
    text-align: center;
}

@media screen and (max-width:400px) {
    #steps {
        padding: 0 0 25px 0;
    }

    #steps h2 {
        font-size: 6vh;
        margin-bottom: 15px;
    }

    .step p {
        width: 80%;
    }
}

/* INSPIRATIONS ==============
======================*/
#possibilities {
    margin: 50px 0;
}

#possibilities h2 {
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width:480px) {
    #possibilities h2 {
        font-size: 4vh;
    }
}

.possibilities-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

/* HOVER-MASK */
.hover-mask a {
    display: block;
    position: relative;
    overflow: hidden;
    height: 300px;
    margin: 0 15px;
}

.hover-mask img {
    max-width: 100%;
    height: auto;
    width: 300px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.hover-mask:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.hover-mask a p {
    display: block;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin-top: 0px;
    height: 100%;
    width: 100%;
    padding: 35% 0;
    text-align: center;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    color: white;
    line-height: 2vh;
    font-size: 14px;
}

.hover-mask:hover a p {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

.hover-mask a h3 {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0px;
    margin-bottom: 0px;
    height: 100%;
    width: 100%;
    padding: 25% 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    color: white;
    font-size: 3vh;
    letter-spacing: 3px;
}

.hover-mask:hover a h3 {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

.hover-mask h4 {
    font-family: "the girl next door", cursive;
    font-weight: 100;
    font-size: 3vh;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* ================= CRUSH
=========================*/

#crush {
    margin: 100px 0 0 0;
}

#crush h2 {
    position: absolute;
    text-align: center;
    padding-left: 50%;
}

.crush-wrap {
    display: flex;
    flex-direction: column;
}

.crush-item {
    display: flex;
    margin: 20px 0;
}

.crush-item-img {
    width: 50%;
    max-width: 100%;
    height: 100%;
}

.crush-item img {
    height: auto;
    max-width: 100%;
}

.crush-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.crush-text h3 {
    font-family: "The Girl Next Door", cursive;
    font-size: 2vh;
    font-weight: 100;
}

.crush-text h4 {
    font-family: "roboto slab", serif;
    font-size: 4vh;
    font-weight: 100;
    letter-spacing: 2px;
    padding: 5px 0 20px 0;
}

.crush-text p {
    width: 45%;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.btn-crush a {
    font-family: "raleway", sans-serif;
    letter-spacing: 2px;
    border: 1px solid #B18168;
    transition: border 0.5s ease-in-out;
    background-color: #B18168;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 15px 25px;
    font-weight: 500;
    color: #fff;

}

.btn-crush a:hover {
    opacity: 0.7;
}

@media screen and (max-width:1023px) {
    #crush h2 {
        padding: 0;
        position: relative;
        text-align: center;
    }

    .crush-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .crush-img {
        width: 80%;
        order: 1;
    }

    .crush-text {
        width: 80%;
        order: 2;
        width: 100%;
    }

    .crush-text h3 {
        padding-top: 20px;
    }

    .crush-text p {
        width: 60%;
        text-align: justify;
        padding-bottom: 5px;
    }

    .btn-crush {
        margin-bottom: 20px;
    }
}

@media screen and (max-width:480px) {
    .crush-text p {
        width: 80%;
    }
}

/* ================= SOCIAL MEDIA
=========================*/
#social-media {
    margin: 50px 0;
    padding: 40px 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

#social-media h3 {
    font-family: "the girl next door", cursive;
    text-align: center;
    padding-bottom: 20px;
    color: #97684E;
    font-size: 3vh;
}

@media screen and (max-width:480px) {
    #social-media h4 {
        font-size: 3vh;
    }
}

.social-media-wrap {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.social-media-wrap ul {
    display: flex;
}

.social-media-wrap ul li a {
    font-size: 5vh;
    padding: 30px;
}

.social-media-wrap ul li a i {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    background-color: transparent;
}

.social-media-wrap ul li a i:hover {
    -webkit-transform: scale(1.01) translate(0, -5px);
    -moz-transform: scale(1.01) translate(0, -5px);
    -ms-transform: scale(1.01) translate(0, -5px);
    -o-transform: scale(1.01) translate(0, -5px);
    transform: scale(1.01) translate(0, -5px);
    -webkit-animation: skew 1s;
    -moz-animation: skew 1s;
    -ms-animation: skew 1s;
    -o-animation: skew 1s;
    animation: skew 1s;
}

@media screen and (max-width:480px) {
    .social-media-wrap ul li a i {
        font-size: 4vh;
    }
}

@keyframes skew {
    0% {
        transform: skewX(0deg);
    }

    10% {
        transform: skewX(-10deg);
    }

    20% {
        transform: skewX(10deg);
    }

    25% {
        transform: skewX(-8deg);
    }

    30% {
        transform: skewX(8deg);
    }

    33% {
        transform: skewX(-4deg);
    }

    36% {
        transform: skewX(4deg);
    }

    40% {
        transform: skewX(0deg);
    }
}

/* ================= CONTACT
=========================*/

#contact-home {
    margin: 40px 0;
}

#contact-home h2 {
    text-align: center;
}

.contact-home {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-home-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.contact-home img {
    text-align: center;
    font-family: "the girl next door", cursive;
    color: #97684E;
    -webkit-transition: -webkit-transform .8s ease-in-out;
    -moz-transition: -moz-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
}

.contact-home img:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
    cursor: pointer;
}

.contact-home ul {
    line-height: 30px;
}

.contact-home ul li {
    text-align: center;
    font-size: 20px;
    font-family: "raleway", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-home-map {
    width: 100%;
}

@media screen and (max-width:700px) {
    .contact-home ul li {
        font-size: 16px;
    }
}

@media screen and (max-width:480px) {
    .contact-home h3 {
        font-size: 4vh;
    }
}

/*=================== FOOTER
==========================*/

footer {
    height: 100px;
    background-color: #FAF4ED;
}

footer h1 {
    text-align: center;
    padding-top: 3vh;
}

.copyright {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 300;
    color: #985E43;
    font-size: 11px;
}

/* PAGE DESTINATIONS */

/*============== MENU" 
===================================*/
header {
    height: 450px;
    width: 100%;
    background: url('../images/boat-beach.jpg') no-repeat fixed center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.nav-wrap {
    top: 0;
    height: 12vh;
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 20px;
}

nav ul {
    padding-right: 30px;
    display: flex;
    width: 60vh;
    justify-content: space-around;
    padding-right: 40px;
}

nav ul li a {
    font-size: 17px;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    transition: color 0.5s ease-in-out;
    color: white;
}

nav ul li a:hover {
    color: #C1A186;
}

.hero {
    margin: 200px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    /*    margin-top: 100px;*/
    text-align: center;
    margin-top: -100px;
    line-height: 10vh;
    color: white;
}

/*============== INSPIRATIONS 
===================================*/
#inspirations {
    margin-bottom: 50px;
}

#inspirations h2 {
    text-align: center;
    margin: 40px 0 20px 0;
    font-family: 'The Girl Next Door', cursive;
    font-size: 5vh;
}

.inspirations-wrap {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.inspiration-item {
    margin: 0 10px;
}

.inspiration-img {
    overflow: hidden;
    display: inline-block;
}

.inspiration-img img {
    width: 300px;
    height: auto;
    transition-property: transform, opacity;
    transition-duration: 900ms;
    opacity: 1;
    vertical-align: bottom;
}

.inspiration-img:hover img {
    transform: scale3d(1.1, 1.1, 1);
    opacity: .85;
    cursor: pointer;
}

.inspiration-text h3 {
    text-align: center;
    font-size: 25px;
    font-family: "roboto slab", serif;
    letter-spacing: 1px;
    font-weight: 300;
    padding: 20px 0 10px 0;
}

.inspiration-text p {
    width: 300px;
    text-align: justify;
}

@media screen and (max-width:1023px) {
    .inspirations-wrap {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .inspiration-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 0 30px 0;
        padding: 0;
    }

    .inspiration-text {
        width: 3vh;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .inspiration-text p {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:1023px) {
    .inspiration-text {
        width: 60%;
    }

    .inspiration-text p {
        text-align: justify;
    }
}

@media screen and (max-width:480px) {
    .inspiration-text h3 {
        font-size: 3vh;
    }

    .inspiration-text p {
        font-size: 14px;
    }
}

/*============== BESTSELLERS
===================================*/
#bestsellers {
    max-width: 100%;
}

#bestsellers h2 {
    font-weight: 300;
    text-align: center;
    margin: 40px 0 20px 0
}

.bestsellers-wrap {
    display: flex;
    justify-content: center;
}

figure {
    position: relative;
    width: calc(100%/3);
    width: 600px;
    max-width: 100%;
    height: 400px;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: inline-block;
    margin: 0 5px 10px;
}

.f-2 {
    position: relative;
    width: calc(100%/3);
    width: 300px;
    max-width: 100%;
    height: 400px;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: inline-block;
    margin: 0 5px 10px;
}

figure h3 {
    margin: 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    opacity: 1;
    font-size: 31px;
    font-weight: 300;
    transition: 0.6s;
    font-family: "roboto slab", serif;
}

figcaption {
    position: absolute;
    color: white;
    opacity: 0;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

figcaption:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 2px solid white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: 0.3s;
}

figcaption nav {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}

figcaption nav a {
    height: 50%;
    display: block;
    font-size: initial;
}

figcaption nav a p {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    transition: 0.2s;
}

figure:hover h3 {
    transition: 0.1s;
    opacity: 0;
}

figure:hover figcaption {
    opacity: 1;
}

figure:hover figcaption:before {
    width: 180px;
    height: 180px;
}

@media screen and (max-width:719px) {
    .bestsellers-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    figure,
    .f-2 {
        width: 80%;
        height: 300px;
    }
}

@media screen and (max-width:400px) {
    #bestsellers h2 {
        font-size: 4vh;
        padding: 10px;
    }
}


/*============== NEWSLETTER
===================================*/
#newsletter {
    margin-bottom: 20px;
}

.newsletter {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter h3 {
    font-size: 4vh;
    font-family: "The Girl Next Door", cursive;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 40px 0 20px 0;
    color: #97684E;
}

.newsletter form {
    display: flex;
    align-items: baseline;
    margin: 20px 0 40px 0;
}

.newsletter form label {
    font-family: "raleway", sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
    font-size: 18px;
}

.newsletter form input {
    padding: 15px 0;
    width: 250px;
    margin: 0 20px;
    font-size: 16px;
    border-radius: 10px;
    border: solid 2px #ede3d7;
}

.btn-subscribe {
    font-family: "raleway", sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 18px;
    background-color: #B18168;
    border: 1px solid #B18168;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border-radius: 10px;
    padding: 15px 15px;
    color: white;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.btn-subscribe:hover {
    opacity: 0.7;
}

@media screen and (max-width:1100px) {
    .newsletter form {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter form label {
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .newsletter form input {
        margin: 0 0 25px 20px;
        width: 400px;
    }

    .btn-subscribe {
        margin-left: 20px;
    }

}

@media screen and (max-width:600px) {
    .newsletter h3 {
        padding: 0 10px;
        font-size: 3vh;
        text-align: center;

    }

    .newsletter form input {
        width: 100%;
    }
}

/* PAGE "A PROPOS"================
==================================*/

#about {
    width: 100%;
    margin: 40px 0 20px 0;
}

.about-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-slider img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.about-text {
    width: 48%;
    padding-left: 30px;

}

.about-text h2 {
    font-size: 7vh;
    font-family: "roboto slab", serif;
    font-weight: 100;
    margin-bottom: 15px;
    padding-left: 40px;
}


.about-text p {
    margin-bottom: 20px;
    font-weight: 300;
    font-family: "raleway", sans-serif;
    text-align: justify;
    padding: 0 40px;
}

.about-text p span {
    font-weight: 500;
    
}

@media screen and (max-width:1023px) {
    .about-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-text h2 {
        font-size: 6vh;
    }

    .about-slider {}
}

@media screen and (max-width:1012px) {
    .about-text {
        width: 80%;
        margin-top: 20px;
    }

    .about-slider {
        width: 80%;
        height: auto;
    }
}

@media screen and (max-width:481px) {
    .about-text h2 {
        font-size: 4vh;
    }

    .about-text p {
        padding: 0 10px;
    }
}


/* TEAM TRAVEL =====================
======================================*/
#team-travel {}

#team-travel h3 {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 20px;
    font-size: 5vh;
    font-family: "the girl next door", cursive;
    color: #97684E;
}

@media screen and (max-width:480px) {
    #team-travel h3 {
        font-size: 4vh;
        margin-bottom: 10px;
        padding: 0 35px;
    }
}

.team-travel-wrap {
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width:1279px) {
    .team-travel-wrap {
        display: flex;
        flex-direction: column;
    }
}

.employee {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

.employee h4 {
    padding: 20px 0 5px 0;
    font-family: "roboto slab", serif;
    letter-spacing: 1px;
    font-weight: 100;
}

.employee h5 {
    font-family: "The Girl Next Door", cursive;
    font-size: 2vh;

}

.employee p {
    text-align: justify;
    padding: 20px 30px;

}

.employee img {
    max-width: 100%;
}

@media screen and (max-width:1279px) {
    .employee p {
        width: 50%;
    }
}

@media screen and (max-width:700px) {
    .employee {
        padding: 0;
    }

    .employee p {
        width: 80%;
    }
}


/* TESTIMONIALS =====================
======================================*/
#testimonials {
    margin-bottom: 40px;
}

#testimonials h3 {
    text-align: center;
    padding: 40px 0 15px 0;
    margin-bottom: 20px;
    font-size: 5vh;
    font-family: "the girl next door", cursive;
    color: #97684E;
}

@media screen and (max-width:480px) {
    #testimonials h3 {
        font-size: 4vh;
        margin: 0;
        padding: 0;
    }
}

.testimonials-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.single-testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slider__contents img {
    font-size: 200px;
    border-radius: 50%;
    max-width: 100%;
}

.slider__contents h4 {
    margin: 20px 0;
    letter-spacing: 1px;
    font-weight: 300;
    color: #97684E;
}

.slider__contents p {
    width: 90vh;
    text-align: center;
    font-size: 3vh;
    font-family: "raleway", sans-serif;
    font-weight: 300;
    line-height: 1.5em;

}

@media screen and (max-width:700px) {
    .slider__contents h4 {
        font-size: 3vh;
    }

    .slider__contents p {
        font-size: 16px;
        width: 80%;
    }
}

url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);

*,
*:before,
*:after {
    box-sizing: border-box;
}

.slider {
    height: 500px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider__nav {
    width: 8px;
    height: 8px;
    margin: 0 12px;
    border-radius: 50%;
    z-index: 10;
    outline: 6px solid #d19e83;
    outline-offset: -6px;
    box-shadow: 0 0 0 0 #d19e83, 151 104 78 0 rgba(51, 51, 51, 0);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slider__nav:checked {
    -webkit-animation: check 0.4s linear forwards;
    animation: check 0.4s linear forwards;
}

.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
    left: 0%;
}

.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
    left: -100%;
}

.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
    left: -200%;
}

.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
    left: -300%;
}

.slider__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 100%;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

.slider__contents {
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}



@-webkit-keyframes check {
    50% {
        outline-color: #97684E;
        box-shadow: 0 0 0 12px #97684E, 0 0 0 36px rgba(51, 51, 51, 0.2);
    }

    100% {
        outline-color: #97684E;
        box-shadow: 0 0 0 0 #97684E, 0 0 0 0 rgba(51, 51, 51, 0);
    }
}

@keyframes check {
    50% {
        outline-color: #97684E;
        box-shadow: 0 0 0 12px #97684E, 0 0 0 36px rgba(51, 51, 51, 0.2);
    }

    100% {
        outline-color: #97684E;
        box-shadow: 0 0 0 0 #97684E, 0 0 0 0 rgba(51, 51, 51, 0);
    }
}

/*PAGE "CONTACT" =====================
======================================*/

/* HERO =====================
======================================*/
.hero-contact {
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-contact h1 {
    color: white;

}

/* CONTACT =====================
======================================*/

/*FORM =====================
======================================*/
#contact {
    margin: 50px 0 40px 0;
}


.contact-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: flex-start;
}

.infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.infos h2 {
    font-size: 6vh;
}

@media screen and (max-width:480px) {
    .infos h2 {
        font-size: 4vh;
    }
}

.infos input {
    width: 90%;
    padding: 15px 0 15px 5px;
    font-size: 14px;
    font-family: "raleway", sans-serif;
    font-weight: 300;
    border-radius: 10px;
    border: solid 2px #ede3d7;
}

@media screen and (max-width:480px) {
    .infos input .infos textarea {
        width: 300px;
    }
}

.infos label {
    font-size: 17px;
    margin: 25px 0 15px 0;
    font-family: "raleway", sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}

.infos textarea {
    width: 90%;
    margin-bottom: 20px;
    padding-left: 5px;
    padding-top: 2px;
    font-size: 14px;
    font-family: "raleway", sans-serif;
    font-weight: 300;
    border-radius: 10px;
    border: solid 2px #ede3d7;
}

.infos .button-3 {
    width: 50%;
    background-color: transparent;
    border: 2px solid #B18168;
    color: white;
    font-family: "raleway", sans-serif;
    font-size: 2vh;
    font-weight: 500;
    letter-spacing: 1px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    background-color: #B18168;
    cursor: pointer;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    -webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -ms-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;

}

.infos .button-3:hover {
    -webkit-opacity: 0.7;
    -moz-opacity: 0.7;
    -ms-opacity: 0.7;
    -o-opacity: 0.7;
    opacity: 0.7;
}

.contact-map {
    width: 100%;
}

/* ADDRESS =====================
======================================*/

.address {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width:700px) {
    .address {
        padding: 20px 0 20px 0;
    }

}

@media screen and (max-width:480px) {
    .address {
        margin: 0 20px 0 20px;
    }

}

.address h2 {
    font-size: 6vh;
    margin-bottom: 5px;
    text-align: start;
}

@media screen and (max-width:480px) {
    .address h2 {
        font-size: 4vh;
    }

}

.address ul {
    line-height: 2.5em;
    margin-bottom: 20px;
}

.address ul li {
    text-align: center;
    font-size: 20px;
    font-family: "raleway", sans-serif;
    font-weight: 500;
    letter-spacing: 1px;

}

@media screen and (max-width:480px) {
    .address ul li {
        font-size: 15px;
    }

}

.address i {
    color: #AC8D78;
    font-size: 3vh;
}

@media screen and (max-width:480px) {
    .address i {
        font-size: 12px;
    }

}


/* PAGE INSPIRATION/DESTINATION TYPE */
#same {
    margin: 100px 0 100px 0;
}

#same h2 {
    text-align: start;
    font-size: 5vh;
}

.same-wrap {
    display: flex;
}

.same-img {
    max-width: 100%;
    height: auto;
}

.same-img img {
    width: 800px;
    height: 500px;
}

.same-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.same-text p {
    width: 55%;
    text-align: justify;
    letter-spacing: 1px;
    margin-bottom: 30px;
}


a .btn-same {
    font-family: "raleway", sans-serif;
    letter-spacing: 2px;
    border: 1px solid #B18168;
    transition: border 0.5s ease-in-out;
    background-color: #B18168;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    border-radius: 10px;
    padding: 15px 25px;
    font-weight: 500;
    color: #fff;
}

a .btn-same:hover {
    opacity: 0.7;
}

@media screen and (max-width: 1310px) {
    .same-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .same-img {}

    .same-img img {
        order: 1;
        max-width: 100%;
        height: auto;
    }

    .same-text {
        order: 2;
        width: 80%;
    }

    #same h2 {
        font-size: 4vh;
        text-align: center;
        line-height: 1.5em;
    }
}

@media screen and (max-width: 700px) {
    .same-text {
        width: 100%;
    }

    .same-text p {
        width: 80%;
        font-size: 14px;
    }
}


/* RESPONSIVE */
@media screen and (max-width: 1024px) {
    #contact {
        overflow: hidden;
    }
}


@media screen and (max-width: 1024px) {
    .nav-wrap-home ul a: {
        display: none;
    }

    .nav-wrap-home a.icon {
        float: right;
        display: block;
    }
}
