/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Chivo|Playfair+Display&display=swap');

@font-face {
    src: url(../fonts/dellana.ttf);
    font-family: dellana;
}

:root {
    /* DARK BLUE */
    --primary-color: rgba(5, 39, 68, 1);
    /* LIGHT BLUE */
    --primary-color-light: rgba(9, 101, 143, 1);

    /* GOLD */
    /* --secondary-color: rgb(214, 180, 60); */
    --secondary-color: rgb(238, 210, 53);
    /* LIGHT GOLD */
    /* --secondary-color-light: rgba(255, 231, 146, .8);  */
    --secondary-color-light: rgba(255, 215, 0, .8);

    /* DARK OVERLAY */
    --overlay-dark: rgba(0, 0, 0, 0);
    /* WHITE OVERLAY */
    --overlay-white: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Chivo', sans-serif;
    background-color: var(--primary-color);
    width: 100%;
    overflow-x: hidden;    
    color: #fff;
}

/* UTILITIES */
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
}

.btn {
    background: var(--secondary-color-light);
    /* opacity: .9; */
    color: #333;
    padding: 8px 16px;
    border: 3px solid transparent;
    transition: .3s;
    width: 150px;
    text-align: center;
    margin: auto;    
    border-radius: 5px;
}

.btn:hover {
    background-color: var(--secondary-color);
    border: 3px solid var(--secondary-color-light);    
}

.container {
    width: 80%;
    background-color: var(--primary-color);
    padding: 3rem 3rem;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

h1, h2, h3 {    
    font-family: dellana;
}

h1 {    
    margin: 3rem auto;
    font-size: 3rem;
    /* text-shadow: 5px 5px rgba(0, 0, 0, 0.5); */
}

h2 {
    font-size: 2rem;
    /* text-shadow: 5px 5px rgba(0, 0, 0, 0.5); */
}

h3 {
    font-size: 1.5rem;
    /* text-shadow: 5px 5px rgba(0, 0, 0, 0.5); */
}

@media(max-width: 2000px){
    h1 {    
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

@media(max-width: 700px){
    h1 {    
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

.hr {
    display: block;
    width: 30%;
    height: 1px;
    border: 0;
    border-top: 5px solid var(--secondary-color-light);
    margin: 5rem auto;
    padding: 0;
    border-radius: 50%;
}

.container h1 {
    font-weight: 600;
    margin: 1rem 0;
    text-align: center;
}

.container h4 {
    text-decoration: underline;
    padding-bottom: 10px;
}

.container ul {
    text-align: left;
    list-style: circle;
}

.container ul ul {
    padding: 1rem 3rem;
}

.desktopOnly {
    display: block;
}

.mobileOnly {
    display: none;
}

@media(max-width: 860px){
    .desktopOnly {
        visibility: hidden;
    }

    .desktopOnly2 {
        display: none;
    }

    .mobileOnly {
        display: block;
    }
}

/* -------------------------------------- SHOWCASE -------------------------------------- */
#showcase {
    position: relative;
    color: #fff;
    height: 100vh;
    overflow: hidden;
    font-family: dellana;
}

.showcase-about {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/aboutus/commodore-yachting-about-us-showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-46-fly {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/jeanneauprestige46/jeanneau_prestige_46_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/commodore_yachting_yacht_rental_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yachting-routes {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtingroutes/commodore_yachting_routes_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-contact {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/contact/commodore-yachting-contact-showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-general-terms {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/footerlinks/commodore-yachting-general-terms-showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-privacy-policy {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/footerlinks/commodore-yachting-privacy-policy-showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-impressum {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/footerlinks/commodore-yachting-impressum-showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100vw;
    min-height: 100%;
    transform: translateX(calc((100% - 100vw) / 2));
}

/* SHOWCASE YACHT RENTAL */

.showcase-yacht-rental-cranchi-e52 {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/cranchi_e52/cranchi_e52_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-cranchi-z35 {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/cranchi_z35/cranchi_Z35_commodore_yachting_01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-sealine-t50 {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/t50_maja/maja_commodore_yachting_01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-prestige-520-fly {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/prestige_520_fly/prestige_520_fly_commodore_yachting_01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-princess-72-fly {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/princess_72/princess_commodore_yachting_01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-scanner-710-envy {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/scanner_710_envy/scanner_envy_710_commodore_yachting_01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-aquamax-b20f {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/aquamax_b20f/aquamax_b20f_commodore_yachting_01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-aquamax-b23f {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/aquamax_b23f/aquamax_b23f_commodore_yachting_01.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-vagabundo {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/vagabundo/vagabundo_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-johnson-87 {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/johnson_87/johnson_87_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-prestige-440 {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/prestige_440/prestige_440_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-palagruza {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/palagruza/palagruza_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-aliskaf {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/aliskaf/aliskaf_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-shark-bf23 {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/shark_bf23/shark_bf23_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-enzo-35 {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/enzo_35/enzo_35_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-colnago {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/colnago/colnago_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.showcase-yacht-rental-seadoo-gtr230 {
    height: 50vh;
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url('../img/yachtrental/seadoo/seadoo_commodore_yachting_showcase.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero {
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2)), url(/img/ban-index-fleet.jpg);
}

.overlay {
    position: absolute;
    background-color: var(--overlay-dark);
    background-image: linear-gradient(0deg,#052844,rgba(5,40,68,.2));
    width: 100%;
    height: 100%;
    z-index: 0;
}

.showcase-text {
    position: relative;
    top: 30%;
    left: 50%;
    text-transform: capitalize;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 50%;
    font-family: dellana;
}

.showcase-item { 
    position: absolute;
    top: 30%;
    opacity: 1;
    transition: all .5s ease-in-out;
    text-align: center;
    width: 100%;
    height: 100%;    
}

.showcase-item.hide-item {
     visibility: hidden;
     opacity: 0;
}

.testimonial-quote.hide-item {
    display: none;
}

.showcase-text .showcase-item h2 {
    font-size: 4rem;
    color: #fff;    
    font-weight: 200;
    text-shadow: 3px 3px #333;
}

.showcase-text .showcase-item p {
    font-size: 2rem;
    text-shadow: 3px 3px #333;
}

.showcase-text a {
    position: absolute;
    border-radius: 5px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Chivo', sans-serif;
}

@media(max-width: 860px){
    .showcase-text a {
        display: none;
    }
    .showcase-text .showcase-item h2 {
        font-size: 3rem;
    }

    .showcase-text .showcase-item p {
        font-size: 2rem;
    }
}

@media(max-width: 400px){
    .showcase-text .showcase-item h2 {
        font-size: 2.5rem;
    }

    .showcase-text .showcase-item p {
        font-size: 1.5rem;
    }
}

@media(max-height: 850px){
    .showcase-text a {
        top: 135%;
    }
}

@media(max-height: 600px){
    .showcase-text a {
        top: 135%;
        bottom: -50%;
    }
}

@media(max-height: 550px){
    .showcase-text a {
        opacity: 0;
    }
}

/* -------------------------------------- NAVBAR -------------------------------------- */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    width: 100%;
    height: 100px;
    padding: 0 50px;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    overflow: hidden;
    z-index: 5;
    transition: .3s ease;
    border: 2px solid transparent;
    font-family: 'Chivo';
}

.navbar img {
    width: 150px;
    cursor: pointer;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin: 0 5px;
}

.navbar ul li a {
    color: #fff;
    padding: 10px 15px;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: .3s;
    border-radius: 5px;    
}

.navbar ul li:hover a {
    background: var(--secondary-color-light);
    border: 2px solid var(--secondary-color);
    color: #333;
}

.navbar ul li a.active {
    background: var(--secondary-color);
    color: #333;
}

.navbar .social {
    display: flex;
}

.navbar .social a {
    margin: .5rem;
}

.navbar .social a div {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 35px;
    height: 35px;
    transition: all .3s ease-out;
}

.navbar .social .social-facebook {
    background-image: url(../img/socialicons/facebook_bw.png);
}
.navbar .social .social-facebook:hover {
    background-image: url(../img/socialicons/facebook.png);
}

.navbar .social .social-instagram {
    background-image: url(../img/socialicons/instagram_bw.png);
}
.navbar .social .social-instagram:hover {
    background-image: url(../img/socialicons/instagram.png);
}

.navbar .social .social-youtube {
    background-image: url(../img/socialicons/youtube_bw.png);
}
.navbar .social .social-youtube:hover {
    background-image: url(../img/socialicons/youtube.png);
}

.navbar.navbar-scrolled {
    background-color: var(--primary-color);
    opacity: .9;
    border-bottom: 2px solid var(--secondary-color);
    transition: .3s ease-in-out !important;
}

.navbar.navbar-scrolled img.logo {
    content: url(../img/logo_gold.png);
}

.navbar.navbar-scrolled #messenger span {
    display: none;
}

.navbar .hamburger {
    display: none;
    padding: 1rem;
    z-index: 5;
}

.elHiden {
    display: none;
}

@media(max-width: 1420px){
    .navbar ul li a {
        font-size: .7rem;
    }
}

@media(max-width: 1200px){
    .navbar a {
        position: absolute;
        left: 0;
    }

    .navbar ul {
        display: none;
    }

    .mobileMenu {
        font-family: 'Chivo';
        position: fixed;
        background-color: rgba(0, 0, 0, .9);
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        z-index: 6;
        text-align: center;
        border-left: 1px solid var(--secondary-color);
    }
    
    .mobileMenu ul li a {
        color: #fff;
        padding: 3px 6px;
        font-weight: 500;
        text-transform: uppercase;
        border: 2px solid transparent;
        transition: .3s;
        border-radius: 5px;    
    }
    
    .mobileMenu ul li:hover a {
        background: var(--secondary-color-light);
        border: 2px solid var(--secondary-color);
    }
    
    .mobileMenu ul li a.active {
        background: var(--secondary-color);
    }

    .mobileMenu ul {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        height: 40%;
        margin-top: 40%;
    }
    
    .navbar .social {
        display: none;
    }

    .navbar .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 20px;
        top: 20px;
        z-index: 6;
    }

    .navbar .hamburger .fas {
        color: #fff;
    }
}

/* -------------------------------------- MESINĐER -------------------------------------- */

#messenger {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 3rem;
    z-index: 3;
    color: #fff;
    cursor: pointer;
    padding-bottom:0.5rem;
    text-align: center;
}

#messenger i {    
    transition: all .3s ease;    
    background-color: var(--secondary-color);
    border-radius: 30px;
    padding: 6px;
}

#messenger:hover i {
    background-color: transparent;
    color: var(--secondary-color);
}

#messenger #messSpan {
    display: block;
    background-color: var(--secondary-color);
    padding: 3px;
    border-radius: 5px;
}

#messenger #messSpan.noshow {
    visibility: hidden;
}

@media(max-width: 860px){
    #messenger {
        bottom: -20px;
        right: -20px;
    }
}

/* -------------------------------------- TRIPLE -------------------------------------- */

#triple {
    position: relative;
    background-color: var(--primary-color);
}

.triple {
    display: flex;
    justify-content: center;
    align-items: center;    
    color: #fff;
    overflow: visible;
    margin: 5rem auto 3rem;
}

.triple .fullsized-item{
    width: 20%;
    text-align: center;
}

/* .triple i {
    justify-content: center;
    align-items: center;
}

.triple .fullsized-item {    
    text-align: center;
    width: 40%;
    padding: 0 5rem;
}

.triple .fullsized-item h2 {
    margin-top: 2rem;
} */

@media(max-width: 1250px){
    .triple .fullsized-item {
        width: 33%;
        padding: 0 2rem;
    }
}

@media(max-width: 860px){
    .triple {
        flex-direction: column;
    }

    .triple .fullsized-item {
        padding: 0;
        margin: 0 auto;
        width: 60%;
    }

    .triple .fullsized-item i {
        margin-top: 2rem;
    }

    .triple .fullsized-item h2 {
        padding: 0;
        margin: 0;
        
    }
}

/* -------------------------------------- HOME ABOUT -------------------------------------- */

#homeAbout .container {
    margin: 0 auto 5rem;
    padding: 0;
}

.home-about {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-about .home-text {
    width: 30%;
    margin: 0 2rem;
}

.home-about .home-text h1 {
    margin: 0;
}
.home-about .home-text p {
    margin: .5rem 0;
}

.home-about .home-text a {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    transition: .3s;
    border: 2px solid transparent;    
}

.home-about .home-text a:hover {
    border: 2px solid var(--secondary-color-light);
    color: #fff;
}

.home-about .home-text a.btn {
    padding: .5rem 1rem;
}

.home-about .home-text a.btn:hover {
    color: #fff;
}

.home-about img {
    border-radius: 10px;
    width: 50%;
    box-shadow: 0px 0px 100px 20px var(--primary-color-light);
    z-index: 2;
}

@media(max-width: 860px) {
    .home-about {
        flex-direction: column;
        margin: 0rem auto;
    }

    .home-about .home-text {
        width: 100%;
        margin: 0 auto;
    }

    .home-about img {
        margin-top: 3rem;
        width: 100%;
    }
}

/* -------------------------------------- PARALLAX -------------------------------------- */

.parallax {
    position: relative;
    height: 60vh;
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

#home-parallax-one {
    background-image: url(../img/home/commodore-yachting-parallax.jpg);
}

.parallax-overlay {
    position: relative;
    height: 100%;
    width: 100%;
    margin: auto;
    background-color: rgba(0, 0, 0, .6);
}

.parallax-overlay .parallax-info {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 50%;
}

.parallax-overlay .parallax-info a {
    width: 250px;
    text-align: center;
    margin: 1rem auto;
    border-radius: 5px;
}

.parallax-overlay .parallax-info h2 {
    width: 100%;
}

@media(max-width: 860px){
    .parallax {
        height: 60vh;
    }

    .parallax-overlay .parallax-info {
        width: 90%;
    }
}

@media(max-width: 400px){
    .parallax {
        height: 100vh;
    }
}

/* -------------------------------------- HOME YACHTING ROUTES -------------------------------------- */

#home-yachting-routes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100%;
    height: 100%;
}

#home-yachting-routes h1 {
    margin: 3rem auto;
    text-align: center;
}

#home-yachting-routes .image-box {
    position: relative;
    width: 1200px;
    max-width: 80%;
    height: 800px;
    background: url('../img/home/commodore-yachting-home-yachting-routes.jpg') no-repeat center center/cover;    
    display: flex;
    flex-direction: column;
    justify-items: center;
    border-radius: 10px;
    margin-bottom: 5rem;
    transition: all .3s ease-in-out;
    box-shadow: 0px 0px 100px 20px var(--primary-color-light);
}

#home-yachting-routes .btn {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.route > p {
    margin-bottom: 1rem;
}

.route .commodore-gallery {
    margin-bottom: 3rem;
}

@media(max-width: 860px){
}

/* -------------------------------------- HOME CTA -------------------------------------- */

.home-cta {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background-image: linear-gradient(to left, rgba(255,0,0,0), var(--primary-color-light),rgba(255,0,0,0)); /* Standard syntax (must be last) */
}

.home-cta p {
    font-family: dellana;
    margin: 2rem auto;
    text-align: center;
    width: 50%;
}
.home-cta a {
    margin: 2rem auto;
}

@media(max-width: 860px){
    .home-cta p {
        width: 90%;
    }
}

/* -------------------------------------- HOME INFO -------------------------------------- */

.home-info {
    display: flex;
    flex-direction: column;
    margin: 3rem auto;
    position: relative;
    color: #fff;
    text-align: center;
    width: 100%;
}

.home-info h2 {
    padding: 2rem 0;
}

.home-info a {
    margin-bottom: 1rem;
}

.home-info .home-boxes {
    display: flex;
    align-items: center;
    margin: auto;
}

.home-boxes div {
    display: grid;
    background-color: rgba(0, 0, 0, .5);
    width: 400px;
    margin: 1rem;
    padding-bottom: 1rem;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.home-boxes div a:hover {
    background-color: var(--secondary-color-light);
    /* transform: translateY(2px); */
}

.home-boxes div ul {
    margin-bottom: 2rem;
}

.home-boxes div ul li:first-child {
    font-size: .8rem;
}

.home-info .home-boxes .box {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 400px;
    transition: all .5s ease-in-out;
    border-radius: 10px 10px 0 0;
}

.home-info .home-boxes .box::after {
    content:'';
    display:block;
    transition: all .5s ease-in-out;
}

.home-info .home-boxes .box:hover::after {
    content:'';
    display:block;
    height:100%;
    background: var(--primary-color);
    transition: all .5s ease-in-out;
    opacity: 0.4;
}

.home-info .home-boxes div:nth-child(1) .box {
    background-image: url(../img/home/commodore_yachting_01.jpg);
    margin: 0 auto;
}

.home-info .home-boxes div:nth-child(2) .box {
    background-image: url(../img/home/commodore_yachting_02.jpg);
    margin: 0 auto;
}

.home-info .home-boxes div:nth-child(3) .box {
    background-image: url(../img/home/commodore_yachting_03.jpg);
    margin: 0 auto;
}

.home-info .home-boxes .box:nth-child(1):hover {
    filter: alpha(opacity=30);
}

.home-info .home-boxes .box:nth-child(2):hover {
    filter: alpha(opacity=30);
}

.home-info .home-boxes .box:nth-child(3):hover {
    filter: alpha(opacity=30);
}

@media(max-width: 1420px){
    .home-info .home-boxes {
        flex-direction: column;
    }

    .home-info .home-boxes {
        width: 90%;
    }
}

@media(max-width: 1000px){
    .home-info .home-boxes {
        grid-template-columns: 1fr;
    }

    .home-info .home-boxes {
        width: 90%;
    }
}

/* ----------------------------------- TRIPADVISOR ------------------------------------ */

#tripadvisor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tripadvisor-link h3 {
    transition: all .5s ease-out;
}

.tripadvisor-link:hover h3 {
    color: var(--secondary-color);
}

.tripadvisor-imagediv {
    width: 128px;
    height: 128px;
    background-image: url(../img/socialicons/tripadvisor_bw.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .5s ease-out;
    margin: auto;
}

.tripadvisor-link:hover .tripadvisor-imagediv {
    background-image: url(../img/socialicons/tripadvisor.png);
}

/* -------------------------------------- PARNTERS -------------------------------------- */

#partners {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#partners .partnerdiv {
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

#partners img {
    vertical-align: middle;
    width: 200px;
    margin: 2rem;
    border: 1px solid transparent;
    transition: all .5s ease;
}

#partners img:hover {
    filter: grayscale(100);
}

@media(max-width: 800px){
    #partners .partnerdiv {
        display: flex;
        flex-direction: column;
    } 
}

/* -------------------------------------- FOOTER -------------------------------------- */

footer {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(transparent, var(--primary-color-light));
    color: #fff;
    padding-top: 3rem;
    z-index: 4;
    margin-top: 10rem;
}

footer .footer-body {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
}

footer .footer-body img {
    width: 250px;
    margin: 0 auto;
}

footer .footer-body ul {
    padding: 0px 3rem;
}

footer .footer-body .active li {
    background: var(--secondary-color-light);
    opacity: 1;
    color: #333;
}

footer .footer-body ul li {
    padding: 2px 10px;
    border: 3px solid transparent;
}

footer .footer-body ul h2 {
    text-transform: uppercase;
    border-bottom: 4px solid var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    font-family: 'Chivo', sans-serif;
}

footer .footer-body ul li a {
    color: #fff;
}

footer .footer-body ul li:hover {
    background: var(--secondary-color-light);
    border: 3px solid var(--secondary-color);
    color: #333;
    opacity: 1;
}

footer .footer-social a div {
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: .3rem;
    width: 35px;
    height: 35px;
    transition: all .3s ease-out;
}

footer .footer-social .social-facebook {
    background-image: url(../img/socialicons/facebook_bw.png);
}
footer .footer-social .social-facebook:hover {
    background-image: url(../img/socialicons/facebook.png);
}

footer .footer-social .social-instagram {
    background-image: url(../img/socialicons/instagram_bw.png);
}
footer .footer-social .social-instagram:hover {
    background-image: url(../img/socialicons/instagram.png);
}

footer .footer-social .social-youtube {
    background-image: url(../img/socialicons/youtube_bw.png);
}
footer .footer-social .social-youtube:hover {
    background-image: url(../img/socialicons/youtube.png);
}

footer .footer-social .social-whatsapp {
    background-image: url(../img/socialicons/whatsapp_bw.png);
}
footer .footer-social .social-whatsapp:hover {
    background-image: url(../img/socialicons/whatsapp.png);
}

footer .footer-social .social-messenger {
    background-image: url(../img/socialicons/messenger_bw.png);
}
footer .footer-social .social-messenger:hover {
    background-image: url(../img/socialicons/messenger.png);
}

footer .footer-footer {
    text-align: center;
    margin-bottom: 2rem;
}

@media(max-width: 860px){
    footer .footer-body {
        display: flex;
        flex-direction: column;
    }

    footer .footer-body ul {
        margin: 1rem auto;
    }

    footer .footer-body a {
        margin-top: 3rem;
        order: 5;
    }
}

/* -------------------------------------- ABOUT US -------------------------------------- */

#people {
    width: 90%;
    margin: 0 auto;
}

.intro {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    margin: 3rem auto;
}

.intro.general_terms {
    width: 90%;
}

.intro h2 {
    margin: 2rem auto .5rem;
}

.intro h3 { 
    margin: 2rem auto 1rem;
}

.intro a {
    color: var(--secondary-color);
    font-weight: 500;
}

.intro a:hover {
    color: var(--secondary-color-light);
}

#people .intro div {
    display: flex;
    width: 100%;
}

#people .intro div img {
    border-radius: 10px;
    box-shadow: 0px 0px 100px 20px var(--primary-color-light);
}

#people .intro div div {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0 auto 0 2rem;
}

@media(max-width: 860px){
    #people .intro div {
        flex-direction: column;
    }

    #people .intro div div {
        margin: 2rem auto;
    }
}

.person {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 0 auto;
    border-radius: 30px;
    margin-bottom: 2rem;
    color: #fff;
}

.person img {
    justify-self: end;
    border-radius: 15%;
    -webkit-filter: opacity(80%);
    filter: opacity(80%);
    transition: .3s;
    margin: 0 1rem;
    padding: 0 1rem;
}

.person.alt img {
    justify-self: start;
    transform: perspective();
    transition: .3s;
}

.person img:hover,
.person.alt img:hover {
    -webkit-filter: opacity(100%);
    filter: opacity(100%);
}

.person-info {
    width: 400px;
    text-align: center;
    align-items: center;
    border-left: 2px solid var(--secondary-color);
    /* border-radius: 50%; */
    padding: 0 1rem;
    margin: 0 -1px;
}

.person.alt .person-info {
    border-left: 0;
    width: 400px;
    justify-self: end;
    border-right: 2px solid var(--secondary-color);
}

.person-info {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

@media(max-width: 860px) {
    .intro {
        width: 100%;
    }

    .person,
    .person.alt {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }    

    .person img {
        margin: 3rem auto 1rem;
    }

    .person.alt img {
        margin: 3rem auto 1rem;
        order: 1;
    }

    .person .person-info {
        position: relative;
        border-left: 0;
        width: 90%;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-top: 4px solid var(--secondary-color);
    }

    .person .person-info h2,
    .person .person-info h4 {        
        margin: .5rem auto;
    }

    .person.alt .person-info {
        order: 2;     
        border-right: 2px transparent; 
        position: relative;
        border-left: 0;
        width: 90%;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-top: 4px solid var(--secondary-color);       
    }
}

/* -------------------------------------- YACHT JEANNEAU PRESTIGE 46 FLY -------------------------------------- */

#prestige_46 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 5rem;
    text-align: center;
}

#prestige_46 .intro p {
    margin: 1rem auto;
}

#prestige_46 .intro h2 {
    letter-spacing: .3rem;
}

.table-heading {
    margin-top: 1rem;
}

.yacht-prices .period-date {
    width: 150px;
    margin: 0 auto;
}

.booknow h3 {
    margin-bottom: 1rem;
}

@media(max-width: 1100px){
    .desktopOnly {
        visibility: hidden;
    }

    .desktopOnly2 {
        display: none;
    }

    .mobileOnly {
        display: block;
    }
}

@media(max-width: 860px){
    #prestige_46 .intro h2 {
        letter-spacing: .1rem;
    }
}


/* -------------------------------------- YACHT RENTAL -------------------------------------- */

#yacht-rental {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem auto 0;
}

#yacht-rental .single-yacht {
    display: flex;
}

#yacht-rental .single-yacht a > img {
    height: 300px; 
    border-radius: 10px;
    box-shadow: 0px 0px 100px 20px var(--primary-color-light);
}

#yacht-rental .single-yacht .yacht-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 0 0 0 1.5rem;
    border-radius: 10px;
}

#yacht-rental .single-yacht .yacht-info a > h3 {
    text-align: center;
}

#yacht-rental .single-yacht .yacht-info .info-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    padding: 1rem;
}

#yacht-rental .single-yacht .yacht-info .info-table > div {
    display: flex;
    padding: .5rem;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

#yacht-rental .single-yacht .yacht-info .info-table > div img {
    width: 50px;
    margin: .5rem;
}

#yacht-rental .single-yacht .yacht-info .info-table > div p {
    width: 100%;
    height: 100%;
    text-align: center;
    margin: auto;
}

#yacht-rental .single-yacht .yacht-info .info-table > div p span {
    font-weight: 900;
}

#yacht-rental > a {
    margin-top: 3rem;
}

.go-to-top a {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .5s ease;
    width: 200px;
    margin: auto;
}

.go-to-top a:hover {
    color: var(--secondary-color);
}

@media(max-width: 1200px){
    #yacht-rental .single-yacht {
        flex-direction: column;
        width: 90%;
    }

    #yacht-rental .single-yacht a > img {
        width: 100%;
        height: 100%;
    }

    #yacht-rental .single-yacht .yacht-info  {
        margin: 0;
    }

    #yacht-rental .single-yacht .yacht-info .info-table {
        display: flex;
        flex-direction: column;
    }

    #yacht-rental .single-yacht .yacht-info .info-table div {
        margin: .3rem;
    }
}


/* -------------------------------------- YACHTS -------------------------------------- */

#yachts {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 2rem;
}

.yacht-heading-hover:hover {
    color: var(--secondary-color);
    transition: color .5s ease-out;
}

.yacht-heading-hover img {
    border: 1px solid transparent;
    transition: all .5s ease-out;
}

.yacht-heading-hover img:hover {
    border: 1px solid var(--secondary-color);
}

#yachts h3 {
    /* font-family: 'Chivo', sans-serif !important; */
    margin-top: 1rem;
}

#yachts .booknow h3 {    
    font-family: dellana !important;
}

#yachts .table-heading {
    margin: 0rem;
}

.yacht-specifications {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.yacht-specifications .general-info {
    border: 1px solid var(--secondary-color);
    padding: 1rem;
    margin: 1rem;
}

.yacht-specifications tr td {
    padding: .5rem;
}

.yacht-specifications .general-info tr td:first-child {
    background-color: var(--secondary-color-light);
    color: #333;
    font-weight: 700;
}

.yacht-specifications .tech-specs-one,
.yacht-specifications .tech-specs-two {
    border: 1px solid var(--secondary-color);
    padding: 1rem;
    margin: 1rem;
}

.yacht-specifications .tech-specs-one tr td:first-child,
.yacht-specifications .tech-specs-two tr td:first-child  {
    background-color: var(--secondary-color-light);
    color: #333;
    font-weight: 700;
}

.pricelist {
    border: 1px solid var(--secondary-color);
    color: #333;
    margin: 1rem auto;
}

.pricelist tr td {
    padding: .5rem 1rem;
}

.pricelist tr:nth-child(1) {
    background-color: var(--secondary-color-light);

}

.pricelist tr:nth-child(2) {
    color: #fff;
}

.pricelist tr:nth-child(2) td {
    border: 1px solid var(--secondary-color-light);
}

.pricelist-mobile {
    width: 350px;
    margin: 2rem auto;
    text-align: center;
    border: 1px solid var(--secondary-color);
}

.pricelist-mobile tr td {
    padding: .5rem 1rem;
}

.pricelist-mobile tr td:first-child {
    background-color: var(--secondary-color-light);
    color: #333;
}

.pricelist-mobile tr td:nth-child(2) {
    border: 1px solid var(--secondary-color-light);    
}

.main-gallery-image {   
    width: 800px;
    max-width: 100%;
    box-shadow: 0px 0px 100px 20px var(--primary-color-light);
    margin: 2rem auto;
    border-radius: 10px;
}

.daily-weekly-heading {
    display: flex;
    justify-content: space-around;
}

.daily-weekly {
    display: flex;
    justify-content: space-around;
    margin: 1rem;
}

.daily-weekly-left,
.daily-weekly-right {
    display: flex;
    justify-content: center;
    margin: auto 1rem;
    width: 100%;
}

.yacht-prices {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .2rem;
}

.yacht-prices .period-date {
    width: 150px;
}

.yacht-prices .period {
    display: table;
    background-color: var(--secondary-color-light);
    margin: .2rem;
    width: 100%;
}

.yacht-prices .period .period-date {
    color: #333;
    padding: .4rem;
    font-weight: 600;   
}

.yacht-prices .period .period-price {    
    border: 1px solid var(--secondary-color-light);
    background-color: var(--primary-color);
    
    height: 100%;
    padding: .4rem;
    margin-left: .1rem;
    display: table-cell; vertical-align: middle;
}

@media(max-width: 1100px){
    .daily-weekly-heading {
        display: none;
    }

    .daily-weekly {
        flex-direction: column;
    }

    .daily-weekly-left,
    .daily-weekly-right {
        flex-direction: column;
        margin: 1rem auto;
    }

    .yacht-prices {
        flex-direction: column;
        padding: 0;
    }

    .yacht-prices h3 {
        margin: 1rem auto .5rem;
    }

    .yacht-prices .period {
        justify-content: space-between;        
    }
}

/* -------------------------------------- GALLERY -------------------------------------- */

.commodore-gallery {
    width: 1200px;
    max-width: 100%;
    margin: 1rem auto 2rem;
    text-align: center;
}

.commodore-gallery h2 {
    margin-bottom: 2rem;
}

.commodore-gallery a img {
    width: 250px;
    height: 200px;
    transition: all .3s ease;
    margin: 1rem;
    border-radius: 5px;
    background-position: cfenter;
    background-size: cover;
}

.commodore-gallery img:hover {
    transform: scale(1.05);
}

.commodore-gallery .last-gallery-image {
    width: 500px;
    display: block;
    border-radius: 10px;
    margin: 0 auto 1rem;
}

.commodore-gallery .main-gallery-image:hover {
    transform: none;
}

.commodore-gallery .gallery-intro {
    margin: 2rem auto;
}

@media(max-width: 860px){
    #yachts .table-heading {
        margin-top: 2rem;
    }

    .yacht-specifications {
        flex-direction: column;
    }

    .commodore-gallery {
        width: 100%;
    }

    .commodore-gallery a img {
        width: 100%;
        height: 100%;
        margin: 0 auto .5rem;
    }

    .commodore-gallery a img.img-horizontal {
        height: 300px;
    }

    .gallery-intro {
        width: 100%;
        margin: 0 auto;
    }

    .main-gallery-image {
        width: 100%;
        border-radius: 5px;
    }
}

/* -------------------------------------- YACHTING ROUTES -------------------------------------- */

#routes {
    display: flex;
    flex-direction: column;
}

.route {
    display: flex;    
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    text-align: center;
    width: 80%;
    max-width: 1100px;
}
.route h2 {
    margin: 3rem auto;
}

.route ul {
    margin: 1rem auto;
}

.youtube-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.youtube-video iframe {    
    box-shadow: 0px 0px 100px 20px var(--primary-color-light);
    margin-top: 3rem;
}

@media(max-width: 860px){
    .youtube-video iframe {    
        width: 90%;
    }
}

/* -------------------------------------- TESTIMONIALS -------------------------------------- */

.testimonials {    
    position: relative;
    width: 50%;
    margin: 4rem auto;
    text-align: center;
}

.testimonial-quote {
    position: absolute;    
    top: 50%;
    padding: 2rem;
    z-index: 1;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 0px 100px 20px var(--primary-color-light);    
}

.testimonial-quote blockquote {
    background: none;
    font-style: italic;
    line-height: 1.4 !important;
    position: relative;
    text-shadow: 0 1px white;
}

.testimonial-quote blockquote * {
    box-sizing: border-box; 
    margin-bottom: .5rem;
}

.testimonial-quote blockquote p {
    line-height: 1.4 !important;
    font-size: 1.3rem;
}

.testimonial-quote blockquote p:first-child:before {
    content: '\201C';
    font-size: 7.5rem;
    font-weight: 700;
    opacity: .3;
    position: absolute;
    top: -.4em;
    left: -.2em;    
    text-shadow: none;
    z-index: -300;
}

.testimonial-quote blockquote p:first-child:after {
    content: '\201C';
    font-size: 7.5rem;
    font-weight: 700;
    opacity: .3;
    position: absolute;
    
    right: .2em;    
    text-shadow: none;
    z-index: -300;
}

.testimonial-quote .far {
    margin: .5rem;
}

.testimonial-quote cite {
    color: #ccc;
    display: block;
    font-size: .8rem;
}
  
.testimonial-quote cite span {
    color: #ccc;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5); 
}

.testimonial-quote {
    position: relative; 
}

@media(max-width: 860px){
    .testimonials {
        width: 90%;
    }
}

@media(max-width: 500px){
}

@media(max-width: 450px){
}

@media(max-width: 400px){
}

/* -------------------------------------- CONTACT -------------------------------------- */

#contact {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
}

form {
    width: 40%;
    display: flex;
    flex-direction: column;

}

.form {
    width: 100%;
    position: relative;
    height: 50px;
    overflow: hidden;
}

.textarea {
    height: 100px;
    margin-bottom: 1rem;
}

.textarea label::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -1px;
    height: 100%;
    width: 100%;
    border-bottom: 2px solid var(--secondary-color);
    transform: translateX(-100%);
    transition: transform .3s ease;  
}

.form input {
    width: 100%;
    height: 100%;
    color: #fff;
    padding-top: 20px;
    border: none;
    outline: none;
    background-color: transparent;
}

.form textarea {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    color: #fff;
    padding-top: 20px;
    border: none;
    outline: none;
    background-color: transparent;
}

.form label {
    position: absolute;
    bottom: 0px;
    left: 0%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-bottom: 1px solid var(--secondary-color-light);    
}

.form label::after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: -1px;
    height: 100%;
    width: 100%;
    border-bottom: 2px solid var(--secondary-color);
    transform: translateX(-100%);
    transition: transform .3s ease;  
}

.content-name {
    position: absolute;
    bottom: 5px;
    left: 0px;
    transition: all .3s ease;
}

.form input:focus + .label-name .content-name,
.form input:valid + .label-name .content-name{
    transform: translateY(-150%);
    font-size: 12px;
    color: var(--secondary-color-light);
}

.form input:focus + .label-name::after,
.form input:valid + .label-name::after {
    transform: translateX(0%);
}

.form textarea:focus + .label-name .content-name,
.form textarea:valid + .label-name .content-name {
    transform: translateY(-500%);
    font-size: 12px;
    color: var(--secondary-color-light);
}

form input[type=submit] {
    width: 150px;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    background-color: var(--secondary-color-light);
    box-shadow: 3px 3px rgba(0, 0, 0, 0.5);
    border: 3px solid transparent;
    outline: none;
    transition: text .3s ease;
    color: #fff;
    border-radius: 5px;
}

form input[type=submit]:hover {
    background-color: var(--secondary-color);
    border: 3px solid var(--secondary-color-light);
    box-shadow: 2px 2px rgba(0, 0, 0, 0.5);
    transform: scale(1.03);
}

.formMessage {
    background-color: green;
    padding: 1rem 5rem;
    border-radius: 10px;
}

.messageNull {    
    display: none;
}

@media(max-width: 860px) {
    form {
        width: 80%;
    }
}

/* -------------------------------------- GOOGLE MAP -------------------------------------- */
.google-map {
    position: relative;
}

.google-map:hover .overlay {
    z-index: 0;
}

.google-map .overlay {
    position: absolute;    
    left: 25%;
    background-image: none;
    background-color: rgba(0, 0, 0, .5);
    width: 50%;
    height: 500px;
    z-index: 4;
    transition: all .2s;
}

#map {
    height: 500px;
    width: 50%;
    border-radius: 10px;
    margin: 3rem auto;
    z-index: 3;
    filter: opacity(.3);
    transition: filter 500ms ease;
}

#map:hover {
    filter: opacity(1);
}

@media(max-width: 860px){
    #map {
        width: 90%;
    }

    .google-map .overlay {  
        left: 5%;
        width: 90%;
        border-radius: 10px;
    }
}

/* -------------------------------------- LEGAL INFO -------------------------------------- */

#legal-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 80%;
    height: 100%;
    margin: 5rem auto;
}

#legal-info > h2 {
    margin-bottom: 2rem;
}

#legal-info ul {
    margin-bottom: 2rem;
}

.legal-bank-info {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3rem;
}

.legal-bank-info h4 {
    margin-bottom: .5rem;
}

@media(max-width: 860px){
    #legal-info {
        margin: 5rem auto;
        width: 100%;
        padding: 1rem;        
    }

    .legal-bank-info {
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
}

/* -------------------------------------- PRIVACY POLICY -------------------------------------- */

#privacy-info {
    width: 50%;
}

#privacy-info blockquote {
    font-style: italic;
    width: 50%;
    margin: 0 auto;
}

#privacy-info h2 {
    margin: 2rem auto 1rem;
}

#privacy-info p {
    margin: .5rem;}


@media(max-width: 860px) {
    #privacy-info {
        width: 100%;
    }

    #privacy-info blockquote {
        width: 90%;
    }
}

/* -------------------------------------- WAVES -------------------------------------- */

#waves {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 150px;
    background: var(--primary-color);
    overflow: hidden;
}

#waves .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../img/wave_blue.png);
    background-size: 1000px 100px;
}

.fixedWave {
    background-color: var(--primary-color-light);
    background-image: url(../img/footer.svg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    width: 100%;
    height: 160px;
    transform: rotateX(180deg);
    transform: rotateY(180deg);
    z-index: 5;
    overflow: hidden;
}

#waves .wave.wave1 {
    animation: animate 30s linear infinite;
    z-index: 2;
    opacity: 1;
    animation-delay: 0;
    bottom: 0;
}

#waves .wave.wave2 {
    animation: animate2 15s linear infinite;
    z-index: 1;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 0;
}

#waves .wave.wave3 {
    animation: animate 30s linear infinite;
    z-index: 0;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15px;
}

#waves .wave.wave4 {
    animation: animate2 30s linear infinite;
    z-index: 0;
    opacity: 0.7;
    animation-delay: -2s;
    bottom: 10px;
}

@keyframes animate {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}

@keyframes animate2 {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -1000px;
    }
}