* {
    box-sizing: border-box;
    font-size: 20px;
    font-family: 'Titillium Web', /*'Alegreya Sans',*/ Helvetica, sans-serif;
    font-weight: 300;
    color: #555;
}

body {
    margin: 0;
}
body.in-background {
    overflow: hidden;
}
body.in-background .main-layer {
    filter: blur(3px);
}

h1, h2, h3, h4, h5, h6 {
    margin: 1em 0 0.5em 0;
    line-height: 120%;
    font-weight: 600;
    color: #5e2d79;
}
h1 {
    font-size: 1.4rem;
    text-transform: uppercase;
}
h2 {
    font-size: 1rem;
    font-weight: 400;
}

.hidden {
    display: none;
}

a.button,
a.icon,
#menu a {
    text-decoration: none;
}
a:hover,
a:focus {
    color: #742069;
}
.button {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 1.5em;
    border-style: none;
    color: #fff;
    background-color: #5e2d79;
    cursor: pointer;
    transition: background-color 0.5s;
}
.button:hover,
.button:focus {
    color: #fff;
    background-color: #9d7caf;
}

p {
    line-height: 125%;
}

.menu-wide-container,
.header-image-wide-container,
.introduction-wide-container,
.tour-list-title-wide-container,
.tour-list-wide-container,
.arguments-for-us-wide-container,
.tour-body-wide-container,
.references-wide-container,
.contact-wide-container,
.footer-wide-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-wide-container > *,
.header-image-wide-container > *,
.introduction-wide-container > *,
.tour-list-title-wide-container > *,
.tour-list-wide-container > *,
.arguments-for-us-wide-container > *,
.tour-body-wide-container > *,
.references-wide-container > *,
.contact-wide-container > *,
.footer-wide-container > * {
    width: 100%;
    max-width: 1280px;
}

.header-image-wide-container {
    background-color: #fff;
}
.introduction-wide-container {
    background-color: #fff;
}
.tour-list-title-wide-container {
    background-color: #5e2d79;
}
.tour-list-wide-container {
    padding: 0.25rem 0.5rem 0 0.5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    background-color: #fff;
}
.arguments-for-us-wide-container {
    margin: 1rem 0 0 0;
    background-color: #5fc3bb;
}
.tour-body-wide-container {
    padding: 0 0 2rem 0;
    background-color: #f7f7f7;
}
.references-wide-container {
    background-color: #f7f7f7;
}
body.home .contact-wide-container {
    background-color: #111;
}
.footer-wide-container {
    padding: 3rem 0.5rem;
    text-align: center;
    background-color: #fff;
}

/* - - - - Header - - - - */

header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

@media all and (min-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    header {
        display: none;
    }
}

#open-menu-button {
    padding: 0.5em;
    background-color: transparent;
    border-style: none;
    cursor: pointer;
}
#open-menu-button * {
    vertical-align: middle;
}
/*#open-menu-button #menu-open-icon {
    display: none;
}
#open-menu-button #menu-close-icon {
    display: none;
}*/

/* - - - - Menu - - - - */

#menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    z-index: 3;
    transition: transform 0.5s;
}
#menu.closed {
    display: none;
}
#menu.visually-hidden {
    transform: translateX(-67%);
}
#menu * {
    color: #fff;
}
#menu nav {
    flex: 1 1 67%;
    background-color: rgba(94, 45, 121, 0.8);
}
#menu .blank-cover {
    flex: 1 1 33%;
}
#menu .logo {
    margin: 1em 0;
    width: 100%;
    height: 20vmin;
    min-height: 20vmin;
    background: url("../img/logo.png") 50% 50%/contain no-repeat;
}
#menu nav {
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
}
#menu nav * {
    font-family: 'Montserrat', Arial, sans-serif;
}

#menu nav .item {
    flex: 0 0 auto;
    width: 100%;
    padding: 0.5em 0;
    border-bottom: 1px solid #9d7caf;
}

#menu nav #tours-main-menu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
}

#menu nav #tours-main-menu-item:not(.opened) .tours-menu {
    display: none;
}
#menu nav #tours-main-menu-item .tours-menu {
    margin: 0 0 0 0em;
    overflow: hidden;
    /*transition: max-height 0.5s;*/
}
#menu nav #tours-main-menu-item .tours-menu .tour-menu-item {
    display: flex;
    align-items: center;
    margin: 0.5em 0;
}
#menu nav #tours-main-menu-item .tours-menu .tour-menu-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    vertical-align: middle;
    margin: 0 0.5em 0 0;
}

#menu nav .item .flag {
    width: 30px;
    vertical-align: middle;
    border-radius: 2px;
}

@media all and (min-width: 640px) {
    .menu-wide-container {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
    #menu,
    #menu.closed {
        display: block;
        position: static;
    }
    #menu.visually-hidden {
        transform: translateX(0);
    }
    #menu * {
        color: #5e2d79;
    }
    #menu nav,
    #menu.closed nav {
        height: 100px;
        display: flex;
        flex-direction: row;
        align-items: center;
        overflow: visible;
        background-color: rgba(255, 255, 255, 0.8);
    }
    #menu nav .item {
        width: auto;
        padding: 0 1em;
        border-style: none;
    }
    #menu nav .item.language {
        flex: 1 1 auto;
        text-align: right;
    }
    #menu nav #tours-main-menu-item .tours-menu {
        position: absolute;
        top: 100%;
        padding: 0.5em 1em;
        background-color: rgba(255, 255, 255, 0.8);
        transition: transform 0.5s;
        transform: scaleY(1);
        transform-origin: 50% 0;
    }
    #menu nav #tours-main-menu-item .tours-menu.visually-hidden {
        transform: scaleY(0);
    }
    #menu nav .logo {
        display: none;
    }
    #menu .blank-cover {
        display: none;
    }
}

/* - - - - Main - - - - */

.header-image {
    height: 470px;
    background: url("../img/logo.png") 50% 85%/40% no-repeat, url("../img/header-home.jpg") 56% 50%/cover no-repeat;
}

/* - - - - Footer - - - - */

.footer-wide-container .icons a {
    margin: 0 0.5rem;
}
.footer-wide-container .icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}
.footer-wide-container .icon.link-to-the-blog {
    width: 24px;
    height: 24px;
    transform: rotate(-45deg);
}
.footer-wide-container .copyright {
    margin: 2rem 0 0 0;
}
.footer-wide-container .copyright .separator {
    margin: 0 0.5rem;
}
.footer-wide-container .copyright a {
    text-decoration: none;
}
.footer-wide-container .copyright a:hover {
    text-decoration: underline;
}

/* - - - - Home - - - - */

body.home .introduction {
    padding: 0 0.5rem 3rem 0.5rem;
    text-align: center;
}
body.home .introduction h2 {
    margin: 0.5em 0 1em 0;
}
body.home .introduction p {
    text-align: left;
}
body.home .introduction .button.enquiry {
    margin: 1em 0 0 0;
}

body.home .tour-list-title-wide-container .tours-title {
    margin: 0;
    padding: 1em 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

body.home .tour-list-wide-container .tour {
    margin: 0.25rem 0;
    width: calc(50% - 0.25rem);
    height: 260px;
}
body.home .tour-list-wide-container .tour:nth-child(odd):last-child {
    width: 100%;
}
body.home .tour-list-wide-container .tour .highlights {
    display: none;
}
body.home .tour-list-wide-container .tour .illustration {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
body.home .tour-list-wide-container .tour .illustration a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: 50% 50%/cover no-repeat;
}
body.home .tour-list-wide-container .tour .illustration .title {
    margin: 0 0.5rem;
    text-align: center;
    line-height: 125%;
    color: #fff;
    text-shadow: 0px 0px 2px #000;
}
@media all and (min-width: 560px) {
    .header-image {
        height: 560px;
        background: url("../img/logo.png") 50% 85%/20% no-repeat, url("../img/header-home.jpg") 50% 50%/cover no-repeat;
    }
    body.home .introduction {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    body.home .introduction p {
        text-align: center;
    }
    body.home .tour-list-wide-container {
        padding: 0 0 1rem 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
    }
    body.home .tour-list-title-wide-container .tours-title {
        padding: 0.8em 0;
        font-size: 1.8rem;
    }
    body.home .tour-list-wide-container .tour {
        margin: 0;
        width: 100%;
        height: 510px;
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }
    body.home .tour-list-wide-container .tour:nth-child(odd) {
        flex-direction: row-reverse;
    }
    body.home .tour-list-wide-container .tour .highlights,
    body.home .tour-list-wide-container .tour .illustration {
        width: 50%;
    }
    body.home .tour-list-wide-container .tour .illustration {
        height: auto;
    }
    body.home .tour-list-wide-container .tour .illustration a {
        transition: transform 2s;
    }
    body.home .tour-list-wide-container .tour .illustration a:hover {
        /*transform: rotate(-2deg) scale(1.2, 1.2);*/
    }
    body.home .tour-list-wide-container .tour .illustration .title {
        display: none;
    }
    body.home .tour-list-wide-container .tour .highlights {
        display: block;
        padding: 3rem 3rem 2rem 3rem;
        text-align: left;
        background-color: #eee9f0;
    }
    body.home .tour-list-wide-container .tour:nth-child(even) .highlights {
        background-color: #fff;
    }
    body.home .tour-list-wide-container .tour .highlights h3 {
        margin: 0 0 1.5rem 0;
        font-size: 1.5rem;
        text-transform: uppercase;
    }
    body.home .tour-list-wide-container .tour .highlights p {
        margin: 0;
    }
    body.home .tour-list-wide-container .tour .highlights .button {
        margin: 1.5rem 0 0 0;
        float: right;
    }
}

body.home .arguments-for-us {
    padding: 0 0.5rem 2rem 0.5rem;
}
body.home .arguments-for-us .header {
    margin: 0;
    padding: 1.4em 0;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    color: #fff;
}
body.home .arguments-for-us .arguments {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}
body.home .arguments-for-us .arguments .argument {
    margin: 0 0 0.5rem 0;
}
body.home .arguments-for-us .arguments .argument .illustration {
    display: none;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
body.home .arguments-for-us .arguments .argument .title {
    margin: 0;
    padding: 1em;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #5e2d79;
    background-color: #fff;
}
body.home .arguments-for-us .arguments .argument .description {
    margin: 0;
    padding: 0 1em 1em 1em;
    text-align: center;
    font-size: 18px;
    background-color: #fff;
}

@media all and (min-width: 640px) {
    body.home .arguments-for-us {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    body.home .arguments-for-us .arguments {
        flex-direction: row;
        justify-content: space-between;
    }
    body.home .arguments-for-us .arguments .argument {
        width: 32%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    body.home .arguments-for-us .arguments .argument > * {
        width: 100%;
    }
    body.home .arguments-for-us .arguments .argument .illustration {
        display: block;
        height: 25vh;
    }
    body.home .arguments-for-us .arguments .argument .description {
        flex-grow: 1;
    }
}

body.home .contact {
    padding: 2.1rem 0.5rem 1.5rem 0.5rem;
}
body.home .contact * {
    text-align: center;
    color: #fff;
}
body.home .contact .title {
    margin: 0 0 1em 0;
    font-size: 2rem;
    text-transform: uppercase;
}
body.home .contact a {
    text-decoration: none;
}
body.home .contact a:hover {
    text-decoration: underline;
}
@media all and (min-width: 640px) {
    body.home .contact {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* - - - - Tour - - - - */

body.tour .tour-body-wide-container .tour-body {
    padding: 0 0.5rem;
}
body.tour .tour-body {
    text-align: center;
}
body.tour .tour-body h1 {
    margin: 1em 0 1.5em 0;
}

body.tour .tour-body .price {
    font-size: 1.2em;
    font-weight: 600;
    color: #05a395;
}

body.tour .tour-body p {
    margin: 1em 0;
    text-align: left;
}

body.tour .tour-body .button.enquiry {
    margin: 0.5rem 0 0 0;
}

@media all and (min-width: 640px) {
    body.tour .tour-body-wide-container .tour-body {
        padding: 0 3rem;
    }
}

/* - - - - References - - - - */

body.references .references {
    padding: 0 0.5rem 3rem 0.5rem;
}
body.references .references h1 {
    margin-bottom: 0;
    text-align: center;
}
body.references .references .note-to-title {
    text-align: center;
    text-transform: lowercase;
}
body.references .references .title {
    margin: 2em 0 0.5em 0;
    font-weight: bold;
}
body.references .references .description {
    margin: 0;
}

/* - - - - Contact - - - - */

body.contact .contact {
    padding: 0 0.5rem;
    background-color: #f7f7f7;
}

body.contact .contact .info {
    margin: 0 0 2em 0;
    text-align: center;
}
body.contact .contact .info .web-address {
    margin: 1.5em 0 0 0;
}
body.contact .contact .info .email-address {
}

body.contact .contact .form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    border-style: none;
}
body.contact .contact .form .field {
    width: 100%;
    margin: 1em 0;
}

body.contact .contact .form input[type=text],
body.contact .contact .form input[type=email],
body.contact .contact .form input[type=tel],
body.contact .contact .form textarea {
    width: 100%;
    border-style: none;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
    background-color: transparent;
}
body.contact .contact .form textarea {
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
}
body.contact .contact .form textarea:focus {
    border: 1px solid #ccc;
    border-radius: 2px;
}
body.contact .contact .form input:disabled,
body.contact .contact .form textarea:disabled {
    color: #ccc;
}
body.contact .contact .form:disabled .dpr-accepted-label,
body.contact .contact .form:disabled a {
    color: #ccc;
}
body.contact .contact .form .message {
    resize: vertical;
}
body.contact .contact .form button {
    border-style: none;
    background-color: transparent;
}
body.contact .contact .form .submit {
    display: block;
    margin: 0 auto;
}
body.contact .contact .form .submit:disabled {
    color: #ccc;
    cursor: not-allowed;
}
body.contact .contact .form .field .hint {
    margin: 0.5em 0 0 0;
    font-size: 0.8em;
    line-height: 120%;
    display: none;
}
body.contact .contact .form .field.invalid .hint {
    display: block;
}
body.contact .contact .form .feedback {
    margin: 1em 0;
}
@media all and (min-width: 640px) {
    body.contact .contact {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    body.contact .contact > * {
        flex: 1 1 50%;
    }
    body.contact .contact .info {
        margin: 0 1rem 0 0;
    }
    body.contact .contact .form {
        margin: 1rem 0 0 1rem;
    }
    body.contact .contact .form .field.half-size {
        width: calc(50% - 1rem);
    }
}

/* - - - - Cookie Notice - - - - */

.cookie-notice {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    margin-left: 1rem;
    max-width: 480px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 2px;
    background-color: #5e2d79;
    box-shadow: 0px 0px 10px 0px #000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}
.cookie-notice.visually-hidden {
    bottom: -320px;
}
.cookie-notice * {
    color: #fff;
}
.cookie-notice p {
    margin: 0;
    max-width: 100%;
    text-align: center;
}
.cookie-notice .button {
    margin: 0.75rem 0;
    color: #5e2d79;
    background-color: #fff;
}
/*
hex dec  max  diff 20% -20% dec -20% hex
5e:  94; 255; 161; 32; 223;     df
2d:  45; 255; 210; 42; 213;     d5
79: 121; 255; 134; 27; 228;     e4
*/
.cookie-notice .button:hover,
.cookie-notice .button:focus {
    background-color: #dfd5e4;
}
.cookie-notice .link-to-dp-doc:hover,
.cookie-notice .link-to-dp-doc:focus {
    color: #dfd5e4;
}
