/*********************************************** FONTS ***********************************************/
@import url('https://fonts.googleapis.com/css2?family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&display=swap');

@font-face {
    font-family: 'avenir_nextbold';
    src: url('../font/avenirnext-bold-webfont.woff2') format('woff2'),
         url('../font/avenirnext-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'avenir_nextheavy';
    src: url('../font/avenirnext-heavy.woff') format('woff'),
        url('../font/avenirnext-heavy.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
/*********************************************** GLOBAL STYLES ***********************************************/
* {
  box-sizing: border-box;
}
:root {
  --blue: #0059ba;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-y: scroll;
    scroll-behavior: auto;
}
html,
body {
    height: 100%;
    min-height: 100%;
    font-family: "Literata", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    line-height: 1.2;
    color: #191919;
    margin: 0; 
}
a {
    color: #6e9e9d;
    text-decoration: none;
    cursor: pointer;
    background-color: transparent;
}
a span {
     color: #191919;
}
a:active,
a:hover {
    color: #191919;
    text-decoration: none;
    outline: 0;
}
a:hover span {
     color: #6e9e9d;
}
img {
    box-sizing: border-box;
    border: 0;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    height: auto;
}
.blue {
    color: var(--blue);
}
/*********************************************** HEADER ***********************************************/
header {
    position: absolute;
    width: 100%;
    height: 150px;
    z-index: 101;
    padding-top: 15px;
}
.header-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/********************************************** FOOTER **********************************************/
footer {
    background-color:  var(--blue);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 100px 0;
}
.footer_holder {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.footer_social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
.footer_social a{
    padding:0 4px;
}
.footer_content {
    color: #ffffff;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 20px;
}
.footer_copy {
    color: #ffffff;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
/******************************** OVERVIEW *******************************/
.overview {
    padding: 125px 0 115px;
}
.overview .sub-title {
    font-size: 22px;
    margin:20px 0;
    color: var(--blue);
}
.overview .sub-title span {
    font-family: 'avenir_nextbold';
}
/********************************************** Discover Carousel **************************************/
.home-discover-carousel,
.menu-holder.nav-open{
    padding: 85px 0 100px;
    background-color: var(--blue);
    background-image: url('../img/puzzle.png');
    background-repeat: repeat;
}
.home-discover-carousel .sup-title {
    font-size: 40px;
    color: white;
    font-family: 'avenir_nextheavy';
    text-align: center;
    letter-spacing: 6px;
}

.home-discover-carousel .section-title {
    position: relative;
    z-index: 100;
}
.discover-slider {
    margin-top: -12px;
}
.discover-slider .slick-slide {
    padding: 0 10px;
}

.discover-slider .slick-list {
    margin: 0 -10px;
}

.discover-image img {
    width: 100%;
    height: auto;
    display: block;
}
.discover-item {
    background: white;
    border-radius: 10px;
}
.discover-content {
    text-align: center;
    padding: 5px 10px;
}
.discover-content h3 {
    font-family: 'avenir_nextheavy';
    color: var(--blue);
    font-size: 36px;
    letter-spacing: 4px;
    line-height: 1;
    margin: 10px 0 0px;
    text-transform: uppercase;
}
.discover-content .sub-title p{
    font-size: 17px;
    letter-spacing: 2px;
}
.section-text {
    font-size: 22px;
    color: white;
    width: 80%;
    margin-top: 30px;
}
.nav-outing-holder {
    position: relative;
}
.custom-outing-slider-nav button {
    background: transparent;
    border: none;
}
.custom-outing-slider-nav {
    position: absolute;
    left: auto;
    right: 0;
    top: auto;
    bottom: -60px;
}
.custom-outing-slider-nav .custom-outing-prev {
    margin-right: 30px;
}

/********************************************** EXPERIENCE CAROUSEL **************************************/
.experience-nav-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.experience-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-name {
    text-align: center;
    color: #616161;
    font-size: 13px;
    text-transform: uppercase;
}
.experience-slider-main {
    margin-bottom: 40px;
}
.experience-item {
    display: flex;
    align-items: center;
}
.experience-main-image {
    flex:1;
}
.experience-content {
    flex: 1;
}
.experience-content .sub-title {
    font-family: 'avenir_nextheavy';
    color: black;
    font-size: 20px;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
    padding: 30px 0 55px;
}
.experience-content .punchline {
    font-style: italic;
    font-weight: 700;
    color:#b94220;
}
.custom-experience-slider-nav {
    position: absolute;
    right:0;
    left: auto;
    z-index: 1000;
}
.custom-experience-slider-nav button {
    background: transparent;
    border: none;
}
.home-experiences-carousel .nav-holder {
    position: relative;
}
.home-experiences-carousel .experience-content h3 {
    font-family: 'avenir_nextheavy';
    color: black;
    font-size: 53px;
    letter-spacing: 4px;
    line-height: 1;
    text-transform: uppercase;
}
.home-experiences-carousel button.custom-prev {
    margin-right: 30px;
}
#membership-form input {
    height: 55px;
    background-color: #ececec;
}
#membership-form input[type=submit] {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    background: #0059ba;
    color: white;
    font-weight: 700;
    font-size: 20px;
    border-color: transparent;
}
.form_envelope {
    padding: 80px;
    position: relative;
    box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.2);
    margin-bottom: 120px;
    border-top: 6px solid  var(--blue);
    background: white;
    margin-top: -215px;
}
.form_envelope .ornament {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
}
.form_envelope .bottom_left {
    position: absolute;
    left: 10px;
    top: auto;
    bottom: 10px;
}
.form_envelope .bottom_right {
    position: absolute;
    right: 10px;
    left: auto;
    top: auto;
    bottom: 10px;
}
.form_envelope .top_left {
    position: absolute;
    left: 10px;
    top: 10px;

}
.form_envelope .top_right {
    position: absolute;
    right: 10px;
    left: auto;
    top: 10px;
}
.form_envelope h2 {
    font-family: 'avenir_nextheavy';
    color: var(--blue);
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}
.form-section {
    background:url('../img/form-background-pattern.jpg') repeat-x top ;
}
.home-keyart {
    height: 960px;
    background-image:url('../img/keyart.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}
.form_message {
    display: none;
    color: black;
    text-align: center;
    font-size: 25px;
}
.form_message.success {
    display: block;
    padding: 20px;
    color: black;
    font-family: 'avenir_nextheavy';
}
.form_holder.success {
    display: none;
}
.header-holder .menu-holder {
    display: none;
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100vh;
}
body.inner_page.nav-open {
    overflow: hidden;
}
.header-holder .menu-holder.nav-open {
    display: block;
}
.header-holder .logo {
    z-index: 100;
}
#nav-icon {
    z-index: 1000;
}
header nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 180px;
}
.main_menu {
    list-style-type: none;
    text-align: center;
}
.main_menu li { 
     margin-bottom: 40px;
}
.main_menu a {
    font-family: 'avenir_nextheavy';
    color: white;
    font-size: 52px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
}
section.home-experiences-carousel {
    padding-bottom: 100px;
}


