/*----- body -----*/

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;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 10px 0;
}


/*-----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: 12px 16px;
position: relative;
}

.nav-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
}

.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;
}


/*----- section -----*/
section {
    width: auto;
    background-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 6px;
}

/*----- article -----*/

article {
    width: auto;
    max-width: 928px;
    background-color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    text-align: center;
}

.blue {
    background-color: #0000ff;
}

/*----- footer -----*/

footer {
    width: auto;
    background-color: #cccccc;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    text-align: center;
    text-decoration: none;
}

/*----- forms -----*/

form {
    display: flex;
    flex-direction: column;
    width: 300px;
    grid-gap: 20px;
    margin-left: auto;
    margin-right: auto;
}

input {
    border: #808080 1pt solid;
    color: #000000;
    padding: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 12px;
}

select {
    border: #808080 1pt solid;
    color: #000000;
    padding: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 12px;
}

textarea {
    border: #808080 1pt solid;
    color: #000000;
    padding: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 12px;
}


label {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #000000;
    margin: 20px auto 20px auto;
}

/*----- fonts -----*/

h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    margin: 10px auto;
}

h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #000000;
    margin: 20px auto;
}

h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    margin: 10px auto;
}

h4 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    margin: 20px auto 20px auto;
}

h5 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0000ff;
    margin: 20px auto 20px auto;
}

h6 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    margin: 14px auto 14px auto;
    line-height: 22px;
}

p {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin: 14px auto 14px auto;
    line-height: 22px;
}

.foot {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #000000;
    margin: 10px auto 10px auto;
    line-height: 12px;
}

.date {
    line-height: 14px;
}

.full {
    color: #cccccc;
    text-decoration: line-through;
    line-height: 14px;
}

a {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0000ff;
    margin: 10px auto 10px auto;
    line-height: 22px;
    text-decoration: none;
}

.black {
    color: #000000;
}

.darkgrey {
    color: #666666;
    font-size: 13px;
}

/*----- lines -----*/

hr {
    width: auto;
    max-width: 900px;
    background-color: #cccccc;
    margin-top: 30px;
    margin-bottom: 30px;
    height: 1px;
}

.short {
    width: auto;
    max-width: 400px;
    background-color: #cccccc;
    margin-top: 30px;
    margin-bottom: 30px;
    height: 1px;
}

/*----- buttons -----*/

button {
    width: 240px;
    display: inline-block;
    border-radius: 4px;
    padding: 8px 30px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 13px;
    font-weight: 400;
    position: static;
    cursor: pointer;
    margin: 5px 0 5px 0;
}

.buttonblue {
    background: #0000ff;
    color: #ffffff;
    border: #ffffff 1pt solid;
}

.buttoncenter {
    display: block;
}

button:hover {
    background: #cccccc;
    transition: 3s;
}

/*----- fa images -----*/

.fa-calendar {
    display: block;
    color: #000000;
    margin-top: 30px;
    font-size: 42px;
    cursor: pointer;
}

.fa-check {
    display: block;
    color: #000000;
    margin-top: 10px;
    font-size: 42px;
    cursor: pointer;
}

.fa-times {
    display: block;
    color: #000000;
    margin-top: 10px;
    font-size: 42px;
    cursor: pointer;
}

.fa-check-square-o {
    display: block;
    color: #000000;
    margin-top: 30px;
    font-size: 42px;
    cursor: pointer;
}

.fa-user {
    display: block;
    color: #000000;
    margin-top: 10px;
    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;
}

/*----- images -----*/

img {
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
}

.logo {
    width: auto;
    max-width: 320px;
    padding: 4px;
    margin: 0 10px;
    border: none;
}

.toppicture {
    height: auto;
    max-height: 220px;
    background: #ffffff;
    padding: 4px;
    margin: 10px 4px;
    border: #cccccc 1.5pt solid;
    border-radius: 8px;
}

.packagelogo {
    height: auto;
    max-height: 70px;
    background: #ffffff;
    padding: 4px;
    margin: 8px 4px;
    border: #0000ff 1.5pt solid;
    border-radius: 5px;
}

.aboutus {
    height: auto;
    max-height: 80px;
    padding: 4px;
    margin: 0 30px;
    border: none;
}

.media {
    width: auto;
    max-width: 180px;
    background: #ffffff;
    padding: 4px;
    margin: 8px 4px;
    border: #999999 1.5pt solid;
    border-radius: 8px;
}

.mediadesktop {
    width: auto;
    max-width: 180px;
    background: #ffffff;
    padding: 4px;
    margin: 8px 4px;
    border: #999999 1.5pt solid;
    border-radius: 8px;
}

.mediumimage {
    width: auto;
    max-width: 247px;
    background: #ffffff;
    padding: 4px;
    margin: 8px 4px;
    border: #999999 1.5pt solid;
    border-radius: 8px;
}

.largeimage {
    width: auto;
    max-width: 300px;
    background: #ffffff;
    padding: 4px;
    margin: 8px 4px;
    border: #999999 1.5pt solid;
    border-radius: 8px;
}

/* MEDIA */

@media (max-width: 900px) {

nav {
    height: 8vh;
}

.navdesktop {
    position: sticky;
    top: 0px;
}

.nav-links ul li {
    display: block;
}

.nav-links {
    position: absolute;
    background: #0000ff;
    height: 120vh;
    width: 100%;
    top: 0;
    right: 420px;
    text-align: left;
    z-index: 2;
    transition: 1s;
}

nav .fa {
    display: block;
    color: #ffffff;
    margin: 10px;
    font-size: 28px;
    cursor: pointer;
}

.nav-links ul {
padding: 6px 10px;
}

.nav-links ul li a {
    font-size: 15px;
}

.nav-links ul li:hover::after {
    width: 0;
}

.accordion {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}

.mobiletitle {
    display: block;
    font-size: 15px;
    font-weight: normal;
    color: #ffffff;
}

.media {
    width: auto;
    max-width: 280px;
    padding: 4px;
    margin: 12px 0;
    border: #cccccc 1.5pt solid;
}

.mediadesktop {
    display: none;
}

.toppicture {
    display: none;
}

.desktop {
    display: none;
}

}
