html {
    overflow-x: hidden;
}

body {
    margin: 0;
    background-color: #c9347a;
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Monoton', cursive;
}

h2 {
    font-size: 4rem;
}

img {
    max-width: 100%;
}

code {
    color: #c9347a;
}

nav {
    position: fixed;
    right: 1rem;
    top: 35%;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 1rem;
    z-index: 1000;
}

nav a:hover svg {
    fill: #c9347a;
}

nav ul {
    padding: 1rem;
    padding-top: 0;
}

nav li {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

nav svg {
    fill: #fff;
    width: 2rem;
    height: 2rem;
}

section {
    width: 100vw;
    min-height: 100vh;
}

#home {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/tropical-bg.svg");
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.countdown {
    margin-top: 1rem;
    color: #fff;
    text-align: center;
    font-size: 3rem;
}

.playback {
    cursor: pointer;
    display: inline-block;
}

.playback svg {
    width: 7vw;
    height: 7vw;
    fill: #fff;
}

.playback.playing .pause {
    display: inline-block;
}

.playback .play {
    display: inline-block;
}

.playback.playing .play {
    display: none;
}

.playback svg {
    display: none;
}

.us img {
    width: 7vw;
}

#info {
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/beach1.jpg");
    padding: 4rem 8rem;
    text-align: center
}

#info .row {
    margin-right: 0;
}

#info .col {
    background-color: rgba(201, 52, 122, 1);
    margin: .5rem;
    padding: 1rem .5rem;
    color: #fff;
}

#info .col a {
    color: #fff;
}

#info .col a:hover {
    color: #fff;
}

#info h1 {
    color: #c9347a;
    font-size: 9rem;
}

#info img {
    max-width: 50%;
}

#info p {
    font-size: 3rem;
    color: #fff;
    padding: 0 4rem;
}

#info p.shade {
    padding: 1rem;
    background-color: rgba(201, 52, 122, .5)
}

#info p code {
    font-size: 100%;
}

#info p.food {
    font-size: 1.5rem;
}

#map {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/map.PNG");
    padding: 2rem;
    position: relative;
}

.slideshow {
    width: 60vw;
    height: 300px;
}

#map h1 {
    color: #c9347a;
    font-size: 11rem;
}

#map .villa {
    margin-top: 6.5rem;
    max-width: 35vw;
    transform: rotate(-8deg);
    position: absolute;
}

#map .villa-1 {
    transform: rotate(4deg);
}

#map .villa-2 {
    transform: rotate(-16deg);
}

.mapouter {
    margin-top: 2rem;
    width: 534px;
    height: 434px;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 400px;
    width: 500px;
}

#stay {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#stay h1 {
    margin: 2rem 0;
    font-size: 8rem;
}

#stay a.float-left {
    display: block;
    margin: 1rem 2rem 0 0;
}

#stay a.float-right {
    display: block;
    margin: 1rem 0 0 2rem;
}

#stay img {
    max-width: 20vw;
    transform: rotate(-12deg);
    margin-right: 2rem;
}

#stay img.alt {
    transform: rotate(12deg);
}

#stay .room {
    background-color: #34bfc9;
    padding: 2rem 6rem 0 4rem;
    margin-bottom: 2rem;
    width: 100%;
    z-index: 2;
}

p a {
    color: #c9347a;
    font-weight: 800;
}

p a:hover {
    color: #962c5e;
}

#stay p {
    font-size: 1.5rem;
}

#extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

#extra p {
    position: absolute;
    width: 45%;
    text-align: center;
    color: #c9347a;
    font-size: 1.3rem;
    margin-top: 2rem;
}

#extra .heart {
    fill: #fff;
    width: 60vw;
}

.ie11 #extra .heart {
    display: none;
}

.ie11 #extra p {
    color: #fff;
    width: 100%;
    position: relative;
    padding: 4rem;
}

#extra .ribbon {
    position: absolute;
    background-color: #fff;
    transform: rotate(35deg);
    top: -5rem;
    right: -15rem;
    z-index: 1;
    padding: 10rem 14rem 5rem 14rem;
    font-size: 2rem;
}

.bird {
    z-index: 500;
    position: fixed;
    top: 0;
    animation: linear alternate;
    -webkit-animation: linear alternate;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
}

.bird-left {
    left: -250px;
    -webkit-transform: scaleX(-1) rotate(-40deg);
    transform: scaleX(-1) rotate(-40deg);
}

.bird-right {
    right: -250px;
    transform: rotate(-50deg);
}

.bird-bottom {
    animation-duration: 3s;
    -webkit-animation-duration: 3s;
    top: unset;
    bottom: -300px;
    transform: rotate(-40deg);
}

.bird-bottom.animate {
    animation-name: run-bottom;
    -webkit-animation-name: run-bottom;
}

.bird-left.animate {
    animation-name: run-left;
    -webkit-animation-name: run-left;
}

.bird-right.animate {
    animation-name: run-right;
    -webkit-animation-name: run-right;
}

@keyframes run-left {
    0% {
        left: -250px;
    }
    75% {
        left: -20px;
    }
    100% {
        left: -250px;
    }
}

@keyframes run-bottom {
    0% {
        bottom: -300px;
    }
    50% {}
    75% {
        bottom: -50px;
        transform: scaleX(-1);
    }
    100% {
        transform: rotate(30deg) scaleX(-1);
        bottom: -300px;
    }
}

@keyframes run-right {
    0% {
        right: -250px;
    }
    75% {
        right: -20px;
    }
    100% {
        right: -250px;
    }
}


/* Extra large devices (large desktops, 1200px and up) */

@media (max-width: 1200px) {
    .xl {
        display: block !important;
    }
    #map h1 {
        font-size: 9rem;
    }
    .slideshow {
        width: 60vw;
    }
    #info p {
        font-size: 2rem;
        color: #fff;
        padding: 0 2rem;
    }
}


/* Large devices (desktops, 992px and up) */

@media (max-width: 992px) {
    .large {
        display: block !important;
    }
    #extra .heart {
        width: 80%;
    }
    #info {
        padding: 2rem 0;
    }
    #info h1 {
        font-size: 4rem;
    }
    #stay h1 {
        font-size: 6rem;
    }
    #stay h2 {
        font-size: 2.5rem;
    }
    .playback svg {
        width: 10vw;
        height: 10vw;
    }
    .us img {
        width: 10vw;
    }
    .countdown {
        font-size: 2rem;
    }
    .slideshow {
        height: 400px;
    }
    #map .villa {
        margin-top: 2.5rem;
        max-width: 60vw;
    }
}


/* Medium devices (tablets, 768px and up) */

@media (max-width: 768px) {
    .medium {
        display: block !important;
    }
    #extra .heart {
        width: 90%;
    }
    #extra p {
        font-size: 1rem;
        width: 60%;
    }
    #stay h1 {
        font-size: 5rem;
    }
    #stay img {
        max-width: 60vw;
    }
    #stay .room {
        text-align: center;
    }
    #stay .room a {
        float: none !important;
        margin: 0;
    }
    .playback svg {
        width: 14vw;
        height: 14vw;
    }
    .us img {
        width: 14vw;
    }
    .countdown {
        font-size: 2rem;
    }
    .slideshow {
        width: 100vw;
        height: 300px;
    }
    #map .villa {
        margin-top: 2.5rem;
        max-width: 80vw;
    }
}


/* Small devices (landscape phones, 576px and up) */

@media (max-width: 576px) {
    h1 {
        padding: 1rem 0 !important;
    }
    .small {
        display: block !important;
    }
    #extra .heart {
        width: 90%;
    }
    #extra p {
        font-size: .8rem;
    }
    #stay h1 {
        font-size: 3rem;
    }
    #stay .room {
        padding: 2rem 1rem;
    }
    #stay h2 {
        font-size: 1.8rem;
    }
    #stay .room .text-right {
        text-align: center !important;
    }
    #info {
        padding: 0;
    }
    #info p {
        font-size: 1rem;
        padding: 0;
    }
    #info h1 {
        font-size: 4rem;
    }
    #info p.food {
        font-size: 1rem;
        color: #fff;
    }
    #map {
        padding: 0;
    }
    #map h1 {
        font-size: 4rem;
    }
    #map .villa {
        max-width: 90%;
        margin-top: 2rem;
    }
    .mapouter-small {
        display: block !important;
    }
    .mapouter-large {
        display: none !important;
    }
    nav {
        bottom: 0;
        left: 0;
        right: 0;
        height: 4rem;
        border-radius: 0 0 0 0;
        top: calc(100% - 4rem);
    }
    nav ul {
        display: flex;
        justify-content: space-between;
        padding: 0 2rem;
    }
    nav ul li {
        display: inline-block;
    }
    #extra p {
        margin-top: 2rem;
    }
    .countdown {
        font-size: 1rem;
    }
}

.media {
    display: none;
    color: #fff;
}