
main.dome-page img {
    display:block;
    margin:0 auto;
}
.d-flex img {
    align-self: flex-end;
}
.dome-page h2,
.dome-page h3,
.dome-page h4{
    padding: 0 10px;
    text-align: center;
}
.dome-page h2{
    margin: 1.5em 0;
}
.d-flex{
    margin-bottom: 3em;
}
.dome-page p{
    padding: 0 10px;
}

.dome-page ul{
    margin: 0 1em;
}

.dome-page .lead-p {
    /* width: 70%; */
    margin: 1.5em auto;
    text-align: center;
    font-size: 1.5em;
    font-weight: 400;
    font-style: italic;
}

/* Arrows section */

.hosp {
    position: relative;
    padding: 1em 30px;
    margin-bottom: 3em;
    z-index: 1;
}
.hosp h2{
    color:white;
}
.hosp::after {
    content: "";
    /* background: url(https://images.eurohoops.net/2019/12/9264466c-bg1.jpg); */
    background: url(https://images.eurohoops.net/2019/12/ab0d2e2a-parke_1000.jpg);
    background-repeat: no-repeat;
    /* background-size: contain; */
    /* background-attachment: fixed; */
    /* opacity: 0.8; */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

p.arrow-p {
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    position: relative;
    /* border: 1px solid grey; */
}

.hosp::after {
    content: "";
    /* background: url(https://images.eurohoops.net/2019/12/9264466c-bg1.jpg); */
    background: url(https://images.eurohoops.net/2019/12/ab0d2e2a-parke_1000.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-attachment: fixed; */
    /* opacity: 0.8; */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.hosp p:last-of-type {
    font-style: italic;
    line-height: 1.5;
    text-align: center;
    color: white;
    font-weight: bold;
}

p.arrow-p.arrow-right:after,
p.arrow-p.arrow-right:before,
p.arrow-p.arrow-left:after,
p.arrow-p.arrow-left:before{
    content:"";
    position:absolute;
    width:20px;
    height:50%;
}
p.arrow-p.arrow-right:before,
p.arrow-p.arrow-right:after{
    left:100%;
}
p.arrow-p.arrow-left:before,
p.arrow-p.arrow-left:after{
    right:100%;
}
p.arrow-p.arrow-right:after,
p.arrow-p.arrow-left:after{
    bottom:0;
}
p.arrow-p.arrow-right:before,
p.arrow-p.arrow-left:before{
    top:0;
}

/* Right arrows */
p.arrow-p.arrow-right:after{
    background: linear-gradient(to right bottom, red 50%, transparent 50%);
}
p.arrow-p.arrow-right:before{
    background: linear-gradient(to right top, red 50%, transparent 50%);
}
p.arrow-p.orange-bg.arrow-right:after{
    background: linear-gradient(to right bottom, rgba(231,120,18,.8) 50%, transparent 50%);
}
p.arrow-p.orange-bg.arrow-right:before{
    background: linear-gradient(to right top, rgba(231,120,18,.8) 50%, transparent 50%);
}
p.arrow-p.black-bg.arrow-right:after{
    background: linear-gradient(to right bottom, rgba(0,0,0,.7) 50%, transparent 50%);
}
p.arrow-p.black-bg.arrow-right:before{
    background: linear-gradient(to right top, rgba(0,0,0,.7) 50%, transparent 50%);
}
p.arrow-p.white-bg.arrow-right:after{
    background: linear-gradient(to right bottom, rgba(255,255,255,.7) 50%, transparent 50%);
}
p.arrow-p.white-bg.arrow-right:before{
    background: linear-gradient(to right top, rgba(255,255,255,.7) 50%, transparent 50%);
}



/* Left arrows */
p.arrow-p.arrow-left:after{
    background: linear-gradient(to left bottom, red 50%, transparent 50%);
}
p.arrow-p.arrow-left:before{
    background: linear-gradient(to left top, red 50%, transparent 50%);
}
p.arrow-p.orange-bg.arrow-left:after{
    background: linear-gradient(to left bottom, rgba(231,120,18,.8) 50%, transparent 50%);
}
p.arrow-p.orange-bg.arrow-left:before{
    background: linear-gradient(to left top, rgba(231,120,18,.8) 50%, transparent 50%);
}
p.arrow-p.black-bg.arrow-left:after{
    background: linear-gradient(to left bottom, rgba(0,0,0,.7) 50%, transparent 50%);
}
p.arrow-p.black-bg.arrow-left:before{
    background: linear-gradient(to left top, rgba(0,0,0,.7) 50%, transparent 50%);
}
p.arrow-p.white-bg.arrow-left:after{
    background: linear-gradient(to left bottom, rgba(255,255,255,.7) 50%, transparent 50%);
}
p.arrow-p.white-bg.arrow-left:before{
    background: linear-gradient(to left top, rgba(255,255,255,.7) 50%, transparent 50%);
}



.orange-bg{
    background-color: orange;
    background-color: rgba(231,120,18,.8);
}
.black-bg{
    background-color: black;
    background-color: rgba(0,0,0,.7);
}
.white-bg{
    background-color: white;
    background-color: rgba(255,255,255,.7);
}
.white-txt{
    color: white;
}
.black-txt{
    color: black;
}










@media screen and (min-width:1000px){
    .d-flex{
        display:flex;
    }
    .d-flex-col{
        flex-direction:column;
    }
    .d-flex-row{
        flex-direction:row;
    }
    .d-flex-around{
        justify-content:space-around;
    }
    .d-flex-between{
        justify-content:space-between;
    }
    .d-flex-evenly{
        justify-content:space-evenly;
    }
    .d-flex.basket,
    .d-flex.cruises {
        flex-direction: row-reverse;
    }
    .d-flex.basket img,
    .d-flex.cruises img {
        margin: 0 0 0 1em;
    }
    .dome-page .lead-p {
        width: 70%;
        /* margin: 1.5em auto;
        text-align: center;
        font-size: 1.5em;
        font-weight: 400;
        font-style: italic; */
    }
    .contact-info h3{
        text-align: left;
    }
    p.arrow-p{
        line-height: 2;
    }
    .hosp p:last-of-type {
        line-height: 3;
    }
    .who img,
    .basket img,
    .tours img,
    .cruises img {
        max-width: 50%;
    }

    .desc-container{
        position: relative;
    }

    .desc {
        /* position: absolute; */
        /* bottom: 0; */
        /* width: 100%; */
        margin: 1.3em 1em 3em 1em;
        justify-content: space-between;
    }
    .desc-facil, .desc-amen {
        max-width: 45%;
        display: flex;
        flex-direction: column;
        /* justify-content: flex-end; */
    }
    .desc-facil h3, .desc-amen h3{
        /* color: #fc4f27; */
    }
    .desc-facil li, .desc-amen li{
        /* font-weight: bold; */
    }

    .d-flex.who {
        justify-content: space-evenly;
    }
    .who p {
        max-width: 300px;
    }
    .who p:nth-of-type(1) { order: 0; }
    .who p:nth-of-type(2) { order: 2; }
    .who img { order: 1; }
    main .who img {
        margin: 0;
        align-self: center;
    }

    /* .d-flex.d-flex-evenly.what {
        background-image: url(https://images.eurohoops.net/2019/12/c6ba08b9-dome_white12.png);
        transform: rotate(-10deg);
    }
    .d-flex.d-flex-evenly.what>* {
        transform: rotate(10deg);
    } */

    .what {
        background-image: url(https://images.eurohoops.net/2019/12/acbe1c13-eh.png);
        background-repeat: no-repeat;
        background-position: center;
    }
    .hosp::after {
        content: "";
        /* background: url(https://images.eurohoops.net/2019/12/9264466c-bg1.jpg); */
        background: url(https://images.eurohoops.net/2019/12/ab0d2e2a-parke_1000.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        /* background-attachment: fixed; */
        /* opacity: 0.8; */
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: absolute;
        z-index: -1;
    }
    
}