body {
    background-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    position: static;
    overflow-x: hidden;
}

/*--- header ---*/

header {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-color: #0000ff;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

/*---nav---*/

nav {
    display: flex;
    background-color: #0000FF;
    border-bottom: #ffffff solid 2px;
    margin: 0 auto;
    padding: 10px;
    height: 30px;
    justify-content: space-between;
    align-items: center;
}

.navdesktop {
    position: sticky;
    top: 0px;
}

.nav-links {
    flex: 1;
    text-align: center;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 10px 32px 10px 8px;
    position: relative;
}

.nav-links ul li a {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #ffffff;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

nav .fa {
    display: none;
}

.mobiletitle {
    display: none;
}

.mobile {
    display: none;
}
/*--- section ---*/

section {
    width: auto;
    background-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/*--- article ---*/

article {
    width: auto;
    max-width: 928px;
    background-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 6px;
}

.pictures {
    max-width: 1200px;
}

.blue {
    background-color: #0000FF;
    margin: 20px 0 20px 0;
}

/*--- footer ---*/

footer {
    width: auto;
    background-color: #cccccc;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    text-align: center;
    text-decoration: none;
}

/*--- fonts ---*/

h1 {
    font-family: Candara, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0000FF;
    margin: 20px auto 30px auto;
}

h2 {
    font-family: Candara, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #0000FF;
    margin: 30px auto 16px auto;
}

h3 {
    font-family: Candara, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #000000;
    margin: 30px auto 16px auto;
}

h4 {
    font-family: Candara, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #808080;
    margin: 30px auto 16px auto;
}

h5 {
    font-family: Candara, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #000000;
    margin: 10px auto 10px auto;
    line-height: 24px;
}

h6 {
    font-family: Candara, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin: 26px auto 4px auto;
    line-height: 24px;
}

p {
    font-family: Candara, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: #808080;
    margin: 10px auto 10px auto;
    line-height: 24px;
}

label {
    font-family: Candara, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #666666;
    margin: 0 auto 0 auto;
    line-height: 5px;
}

.foot {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #000000;
    margin: 10px auto 10px auto;
    line-height: 12px;
}

a {
    font-family: Candara, Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0000ff;
    margin: 10px auto 10px auto;
    line-height: 30px;
    text-decoration: none;
}

.date {
    color: #666666;
    line-height: 14px;
}

.full {
    color: #cccccc;
    text-decoration: line-through;
    line-height: 14px;
}

.text-red {
    color: #ff0000;
}

.text-grey {
    color: #808080;
}

/*--- lines ---*/

hr {
    width: auto;
    max-width: 600px;
    background-color: #cccccc;
    margin: 30px auto;
    height: 1px;
}

.hrblue {
    width: auto;
    max-width: 970px;
    background-color: #0000ff;
    margin: 30px auto 10px auto;
    height: 1.5px;
}

.hrshort {
    width: auto;
    max-width: 300px;
    background-color: #cccccc;
    margin: 30px auto;
    height: 1px;
}

.hrbluedesktop {
    width: auto;
    max-width: 900px;
    background-color: #0000ff;
    margin: 10px auto;
    height: 1.5px;
}

/*--- buttons ---*/

button {
    width: auto;
    max-width: 290px;
    display: inline-block;
    border-radius: 4px;
    padding: 8px 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    margin: 5px auto 5px auto;
}

.buttonblue {
    background: #000080;
    color: #ffffff;
    border: #ffffff 1pt solid;
}

.buttonwhite {
    background: #0000ff;
    color: #ffffff;
    border: #000000 1pt solid;
}

button:hover {
    background: #ffffff;
    color: #000000;
    border: #808080 1pt solid;
    transition: 2s;
}

.buttoncenter {
    display: block;
    text-align: center;
}


/*--- fa images ---*/

.fa-plane {
    display: block;
    color: #ffffff;
    margin-top: 30px;
    font-size: 42px;
    cursor: pointer;
}

.fa-calendar {
    display: block;
    color: #ffffff;
    margin-top: 30px;
    font-size: 42px;
    cursor: pointer;
}

.fa-envelope-o {
    display: block;
    color: #000000;
    margin: 15px 0 5px 0;
    font-size: 42px;
    cursor: pointer;
}

.fa-map-signs {
    display: block;
    color: #ffffff;
    margin-top: 30px;
    font-size: 42px;
    cursor: pointer;
}

.fa-check-square-o {
    display: block;
    color: #ffffff;
    margin-top: 30px;
    font-size: 42px;
    cursor: pointer;
}

.fa-whatsapp {
    display: block;
    color: #000000;
    margin: 15px 15px 0 15px;
    font-size: 42px;
    cursor: pointer;
}

.fa-phone {
    display: block;
    color: #000000;
    margin: 15px 15px 0 15px;
    font-size: 42px;
    cursor: pointer;
}

.fa-eur {
    display: block;
    color: #000000;
    margin: 15px 15px 0 15px;
    font-size: 42px;
    cursor: pointer;
}

.fa-gbp {
    display: block;
    color: #000000;
    margin: 15px 15px 0 15px;
    font-size: 42px;
    cursor: pointer;
}

/*--- logos ---*/

.logo-small {
    height: auto;
    max-height: 36px;
    padding: 0;
    margin: 16px 0 0 0;
    border: none;
}

.logo-euro {
    height: auto;
    max-height: 40px;
    padding: 4px;
    margin: 30px 0 0 0;
    border: none;
}

.logo-gbp {
    height: auto;
    max-height: 40px;
    padding: 4px;
    margin: 30px 0 0 0;
    border: none;
}

.logo-included {
    height: auto;
    max-height: 24px;
    padding: 0;
    margin: 30px 0 0 0;
    border: none;
}

.logo-notincluded {
    height: auto;
    max-height: 24px;
    padding: 0;
    margin: 30px 0 0 0;
    border: none;
}

.logo-location {
    height: auto;
    max-height: 40px;
    padding: 0;
    margin: 16px 0 0 0;
    border: none;
}

.logo-phone {
    height: auto;
    max-height: 48px;
    padding: 4px;
    margin: 16px 8px 0 8px;
    border: none;
}

.logo-whatsapp {
    height: auto;
    max-height: 48px;
    padding: 4px;
    margin: 16px 8px 0 8px;
    border: none;
}

.logo-email {
    height: auto;
    max-height: 48px;
    padding: 4px;
    margin: 16px 8px 0 8px;
    border: none;
}

.logo-pax {
    height: auto;
    max-height: 30px;
    padding: 0;
    margin: 16px 0 0 0;
    border: none;
}

.logo-booking {
    height: auto;
    max-height: 48px;
    padding: 4px;
    margin: 40px 0 0 0;
    border: none;
}

.logo-socialmedia {
    height: auto;
    max-height: 64px;
    padding: 4px;
    margin: 0 10px;
    border: none;
}

.logo-calendar {
    height: auto;
    max-height: 64px;
    padding: 0;
    margin: 30px 0 0 0;
    border: none;
}

.logo-camera {
    height: auto;
    max-height: 64px;
    padding: 0;
    margin: 0 30px;
    border: none;
}

.logo-info {
    height: auto;
    max-height: 64px;
    padding: 0;
    margin: 30px 0 0 0;
    border: none;
}

/*--- images ---*/

img {
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
}

.logo {
    width: auto;
    max-width: 260px;
    background: #ffffff;
    padding: 6px;
    margin: 8px 12px 0 12px;
    border: none;
    border-radius: 10px;
}

.packages {
    width: auto;
    max-width: 320px;
    background: #ffffff;
    padding: 6px;
    margin: 8px 20px;
    border: #cccccc 1.5pt solid;
    border-radius: 10px;
}

.toppicture {
    width: auto;
    max-width: 240px;
    background: #ffffff;
    padding: 6px;
    margin: 8px 20px;
    border: #cccccc 1.5pt solid;
    border-radius: 10px;
}

.toppicturedesktop {
    width: auto;
    max-width: 240px;
    background: #ffffff;
    padding: 6px;
    margin: 8px 20px;
    border: #cccccc 1.5pt solid;
    border-radius: 10px;
}

.images {
    width: auto;
    max-width: 240px;
    background: #ffffff;
    padding: 6px;
    margin: 16px 16px;
    border: #cccccc 1.5pt solid;
    border-radius: 10px;
}

.packageimages {
    width: auto;
    max-width: 200px;
    background: #ffffff;
    padding: 6px;
    margin: 0 16px;
    border: none;
}

.activity {
    width: auto;
    max-width: 180px;
    background: #ffffff;
    padding: 6px;
    margin: 16px 6px;
    border: #cccccc 1.5pt solid;
    border-radius: 0;
}

.picture {
    width: auto;
    max-width: 200px;
    background: #ffffff;
    padding: 3px;
    margin: 16px 8px;
    border: #999999 1.5pt solid;
    border-radius: 10px;
}

.packagepicture {
    width: auto;
    max-width: 340px;
    background: #ffffff;
    padding: 6px;
    margin: 16px 16px;
    border: #999999 1.5pt solid;
    border-radius: 10px;
}

/*----- two column -----*/

.twodiv {
    width: auto;
    max-width: 800px;
    color: #ffff00;
    padding: 0;
    align-content: center;
}

div.twofirst {
    width: 10px;
    background-color: #ffffff;
    border: none;
    float: left;
    padding: 16px;
}

div.twoleft {
    width: auto;
    max-width: 300px;
    background-color: #ffffff;
    float: left;
    padding: 0 20px 10px 20px;
    text-align: left;
    margin: 0;
    border: #cccccc 1pt solid;
    border-radius: 0;
}

div.twospace {
    width: 10px;
    background-color: #ffffff;
    border: none;
    float: left;
    padding: 20px;
}

div.tworight {
    width: auto;
    max-width: 300px;
    background-color: #ffffff;
    float: right;
    padding: 0 20px 10px 20px;
    text-align: left;
    margin: 0;
    border: #cccccc 1pt solid;
    border-radius: 0;
}

div.twolast {
    width: 10px;
    background-color: #ffffff;
    border: none;
    float: none;
    padding: 6px;
    clear: both;
}

/* MEDIA */

@media (max-width: 900px) {

.mobiletitle {
    display: block;
    font-size: 14px;
    font-weight: normal;
    color: #ffffff;
}

nav {
    height: 10vh;
}

.nav-links ul li {
    display: block;
}

.nav-links {
    position: absolute;
    background: #330099;
    height: 80vh;
    width: 300px;
    top: 0;
    right: 420px;
    text-align: left;
    z-index: 2;
    transition: 1s;
}

nav .fa {
    display: block;
    color: #ffffff;
    margin: 5px;
    font-size: 22px;
    cursor: pointer;
}

.nav-links ul {
    padding: 6px 10px;
}

.nav-links ul li:hover::after {
    width: 0;
}

.accordion {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}

.toppicturedesktop {
    display: none;
}

.packagepicture {
    width: auto;
    max-width: 260px;
    background: #ffffff;
    padding: 3px;
    margin: 16px 8px;
    border: #999999 1.5pt solid;
    border-radius: 10px;
}

.media {
    width: auto;
    max-width: 240px;
    background: #ffffff;
    padding: 3px;
    margin: 16px 8px;
    border: #999999 1.5pt solid;
    border-radius: 10px;
}

.picture {
    display: none;
}

}
