@charset "UTF-8";

/* CSS Document */


/*==============================================================
	Common Styles Initials
==============================================================*/

html {
    -webkit-text-size-adjust: none;
    /* Prevent font scaling in landscape */
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* scroll-behavior: inherit !important; */
    scroll-behavior: smooth;
}

*,
*:after,
*:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

@font-face {
    font-family: 'neue_kabelbook';
    src: url('../fonts/neuekabel-book-webfont.woff2') format('woff2'), url('../fonts/neuekabel-book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'neue_kabellight';
    src: url('../fonts/neuekabel-light-webfont.woff2') format('woff2'), url('../fonts/neuekabel-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'neue_kabelmedium';
    src: url('../fonts/neuekabel-medium-webfont.woff2') format('woff2'), url('../fonts/neuekabel-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    background: #fff;
    width: 100%;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scrollbar-color: #01203d #e5e5e5;
    scrollbar-width: thin;
}

body.pause {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #e5e5e5;
}

::-webkit-scrollbar-thumb {
    background: #01203d;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #01203d;
}

a {
    outline: none;
    text-decoration: none;
    color: #495057;
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
    color: #495057;
}

.btn:focus {
    box-shadow: none;
}

input[type="submit"] {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

input,
textarea,
select {
    outline: none;
    resize: none;
    font-family: 'Neue Kabel';
}

a,
input,
button {
    outline: none !important;
}

button::-moz-focus-inner {
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-family: 'neue_kabellight';
    line-height: 1.1;
}

img {
    border: 0;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0 0 15px 0;
    padding: 0;
}

.slick-slide {
    outline: none !important;
}

input[type="search"]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-dropdown input {
    -webkit-appearance: textfield;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/*==============================================================
	Bootstrap Hack
==============================================================*/

.form-control::-webkit-input-placeholder {
    opacity: 1;
    color: #17181a;
}

.form-control:-moz-placeholder {
    opacity: 1;
    color: #17181a;
}

.form-control::-moz-placeholder {
    opacity: 1;
    color: #17181a;
}

.form-control:-ms-input-placeholder {
    opacity: 1;
    color: #17181a;
}

input::-webkit-input-placeholder {
    opacity: 1;
    color: #17181a;
}

input:-moz-placeholder {
    opacity: 1;
}

input::-moz-placeholder {
    opacity: 1;
}

input:-ms-input-placeholder {
    opacity: 1;
}


/*==============================================================
	Custom Style
==============================================================*/

.container {
    max-width: 1230px;
    width: 100%;
    padding: 0 15px;
}


/* --- header css start --- */

.header-wrap {
    height: 75px;
    position: relative;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-wrap header {
    width: 100%;
    height: 75px;
    /* position: fixed; */
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #D3D4BB;
    padding: 0 34px;
    z-index: 123;
}

.header-wrap header .header-logo a {
    display: inline-block;
}

.header-wrap header .header-menu ul {
    display: flex;
    flex-wrap: wrap;
}

.header-wrap header .header-menu ul li a {
    font-size: 18px;
    color: #14364D;
    padding: 0 16px;
    text-transform: uppercase;
    position: relative;
    font-family: 'neue_kabelmedium';
    display: block;
    height: 76px;
    line-height: 76px;
}

/* .header-wrap header .header-menu ul li a:before {
    content: "";
    width: 100%;
    height: 2px;
    background: #14364D;
    position: absolute;
    bottom: -25px;
    left: 0;
    opacity: 0;
    visibility: hidden;
} */

.header-wrap header .header-menu ul li.active a {
    font-family: 'neue_kabelbold';
    font-weight: 700;
    border-bottom: 2px solid #14364D;
    height: 76px;
}

.header-wrap header .header-menu ul li.active a:before {
    opacity: 1;
    visibility: visible;
}

#switch {
    position: absolute;
    display: none;
}

label[for=switch] {
    width: 30px;
    height: 30px;
    position: relative;
}

label[for=switch] span {
    width: 30px;
    height: 4px;
    background-color: #14364D;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    left: 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

label[for=switch] span:first-child {
    top: 0;
    margin-top: 0;
}

label[for=switch] span:last-child {
    top: inherit;
    bottom: 0;
    margin-top: 0;
}

#switch:checked~label span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    transform: rotate(45deg);
}

#switch:checked~label span:first-child {
    transform: rotate(45deg);
    top: 15px;
}

#switch:checked~label span:last-child {
    transform: rotate(-45deg);
    bottom: 11px;
}


/* --- header css end --- */

.section-title {
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 64px;
    line-height: 74px;
    font-weight: 300;
    color: #000;
}


/* --- section intro css start --- */
.section-gallery {
    border-top: 4px solid #64b6ae;
}
.section-intro-wrap {
    padding: 60px 70px;
    background: url(../images/paper-bg.png) #599B9B;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    box-shadow: 0px 4px 4px 0px rgba(8, 41, 38, 0.28);
}

.section-intro .img-box {
    text-align: center;
}

.section-intro .img-box img {
    width: 100%;
}

.section-intro .intro-desc {
    width: 100%;
    max-width: 367px;
    margin: 0 auto;
}

.intro-desc h1 {
    color: #FFF;
    text-align: center;
    font-size: 64px;
    line-height: 74px;
    font-style: normal;
    font-weight: 300;
    padding-bottom: 25px;
}

.pompe-logo {
    text-align: center;
    padding-bottom: 40px;
}

.intro-desc p {
    text-align: center;
    color: #fff;
    font-family: 'neue_kabelbook';
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.intro-btn {
    padding: 55px 24px 44px;
    margin: 10px 0 50px;
    border-top: 1px solid #FBFBFB;
    border-bottom: 1px solid #FBFBFB;
}

.intro-btn ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.intro-btn ul li {
    padding: 0 12px;
    margin-bottom: 11px;
}

.intro-btn ul li a {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border: 0.569px solid #FFF;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    color: #fff;
    font-family: 'neue_kabelbold';
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.intro-btn ul li a img {
    margin-right: 6px;
}

.beirut-store {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.beirut-store a {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border: 0.569px solid #FFF;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    color: #fff;
    font-family: 'neue_kabelbold';
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.beirut-store a img {
    margin-right: 6px;
}

.beirut-store p {
    margin-bottom: 0;
}


/* --- section intro css end --- */


/* --- section about us css start --- */

.section-about-us-wrap {
    padding: 34px;
    background: #D3D4BB;
    height: calc(100vh - 80px);
    overflow-y: hidden;
}

.about-us {
    padding: 64px 0 37px;
    position: relative;
    height: 100%;
}

.about-us img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-info {
    width: 100%;
    max-width: 506px;
    margin-left: auto;
    margin-right: 16px;
    padding: 34px 0;
    position: relative;
    z-index: 1;
    /* background: url(../images/about-info-bg.png); */
    background: #fff;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-info p {
    width: 100%;
    max-width: 337px;
    margin: 0 auto 20px;
}

.about-info .section-title {
    width: 100%;
    max-width: 337px;
    margin: 0 auto;
}


/* --- section about us css end --- */


/* --- section artifacts css start --- */

.section-artifacts-wrap {
    padding: 46px 40px 64px;
    background: url(../images/snow-img.png) #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.artifacts {
    display: flex;
    flex-wrap: wrap;
}

.artifacts-left {
    width: 42.7%;
}

.artifacts-right {
    width: 57.3%;
    padding-left: 40px;
}

.artifacts-left .img-box img {
    width: 100%;
}

.artifact-info h2 {
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
}

.artifact-info .section-title {
    padding-bottom: 20px;
}

.artifacts-listing {
    display: flex;
    flex-wrap: wrap;
}

.artifacts-listing .artifact-box {
    width: 50%;
    margin-bottom: 15px;
}

.artifacts-listing .artifact-box:nth-child(2n) {
    padding-left: 37px;
}

.artifacts-listing .artifact-box p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.artifacts-listing .artifact-box ol {
    font-family: 'Open Sans', sans-serif;
    counter-reset: line;
}

.artifacts-listing .artifact-box ol li {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #000;
    padding-left: 15px;
    position: relative;
}

.artifacts-listing .artifact-box ol li:before {
    content: counter(line)". ";
    counter-increment: line;
    position: absolute;
    top: 0;
    left: 0;
}

.stream-options-wrap {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #D3D4BB;
}

.stream-options-wrap form {
    display: flex;
    flex-wrap: wrap;
}

.stream-options-wrap form .stream-option-box {
    width: 50%;
}

.stream-options-wrap form .stream-option-box:nth-child(2n) {
    padding-left: 37px;
}

.stream-options-wrap form .stream-option-box label {
    width: 100%;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 700;
    padding-bottom: 8px;
}

.stream-option-box select {
    width: 100%;
    max-width: 240px;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #CED4DA;
    background: rgba(255, 255, 255, 0.09);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}

.section-artifacts .right-arrow-btn {
    width: 82px;
    height: 82px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
    cursor: pointer;
    z-index: 12;
}

.section-artifacts {
    position: relative;
}


/* --- section artifacts css end --- */


/* --- section cast of characters css start --- */

.section-cast-of-characters {
    padding: 80px 52px 55px;
    background: #D3D4BB;
    box-shadow: 0px 4px 4px 0px rgba(8, 41, 38, 0.28);
}

.cast-of-characters .section-title {
    padding-bottom: 0;
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.cast-of-characters .section-title:before {
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
}

.cast-of-characters .section-title h2 {
    font-family: 'neue_kabellight';
    display: inline-block;
    padding: 0 23px;
    background: #D3D4BB;
    position: relative;
    z-index: 12;
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}

.cast-of-characters-listing {
    display: flex;
    flex-wrap: wrap;
}

.cast-of-character-box {
    width: 50%;
    padding: 0 30px;
}

.cast-of-character-box h3 {
    color: #000;
    font-size: 36px;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.cast-of-character-box ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 16px;
}

.cast-of-character-box ul li label {
    width: 161px;
    margin-right: 0px;
    font-weight: 700;
}

.cast-of-character-box ul li div {
    width: calc(100% - 193px);
    word-break: break-word;
}

.gallery ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100vw;
    margin: 0 auto;
}

.gallery ul li {
    width: 33.3%;
    /*flex grow may alter aspect ratio depending on images */
    flex-grow: 1;
}

.gallery ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-footer {
    padding: 24px 22px;
    background: url(../images/snow-img.png) #fff;
}

.gallery-footer-info ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.gallery-footer-info ul li {
    width: 33.33%;
}

.gallery-footer-info ul li:nth-child(2) {
    text-align: center;
}

.gallery-footer-info ul li:last-child {
    text-align: right;
}

.gallery-footer-info ul li a {
    display: inline-flex;
    font-family: 'neue_kabelmedium';
    color: #14364D;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.gallery-footer-info h2 {
    color: #14364D;
    font-size: 36px;
    font-family: 'neue_kabellight';
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
}


/* --- section cast of characters css end --- */

.section-news {
    padding: 77px 15px 40px;
    background: url(../images/Paper.png);
}

.news-box {
    width: 100%;
    padding: 30px 30px 30px 30px;
    background: #fff;
    max-width: 692px;
    margin: 0 auto;
}

.news-box p {
    margin-bottom: 20px;
}

.news-box p a {
    color: #000;
    text-decoration: underline;
}

.news-box h3 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-bottom: 30px;
}

.news-box img {
    margin-bottom: 30px;
}

.footer-wrap {
    padding: 55px 55px;
    background: url(../images/paper-bg.png) #599B9B;
}

.footer-wrap footer {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
    justify-content: space-between;
}

.footer-wrap footer .footer-col {
    width: 33.33%;
    padding: 0 15px;
}

.footer-left a,
.footer-center a {
    display: inline-block;
}

.footer-center {
    text-align: center;
}

.get-update {
    width: 100%;
    max-width: 374px;
    margin-left: auto;
}

.get-update form {
    display: flex;
    flex-wrap: wrap;
}

.get-update form .submit-btn {
    width: 137px;
}

.get-update form .form-group {
    width: calc(100% - 137px);
}

.get-update form .form-group .form-control {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    border: 1px solid #CED4DA;
    background: #FFF;
    color: #6C757D;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}

.get-update form .form-group .form-control::-webkit-input-placeholder {
    color: #6C757D;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.get-update form .form-group .form-control::-moz-placeholder {
    color: #6C757D;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.get-update form .form-group .form-control:-ms-input-placeholder {
    color: #6C757D;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.get-update form .form-group .form-control:-moz-placeholder {
    color: #6C757D;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.submit-btn .submit {
    width: 100%;
    height: 100%;
    text-align: center;
    background: #D3D4BB;
    color: #495057;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    border: 0;
    box-shadow: none;
}

.social-media {
    width: 100%;
    max-width: 374px;
    margin-left: auto;
    /* padding-top: 30px; */
}

.social-media ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -5px;
}

.social-media ul li {
    padding: 0 5px;
}

.social-media ul li a {
    display: block;
}
.sticky {
    position: fixed;
}
.hadsel {
    /* min-height: 100vh; */
    background: #65b3b1 url('../images/sky2.jpg?v=0') fixed repeat-y;
    background-size: contain;
}


/* fx */
/* Underline From Center */
.hvr-underline-from-center,
.header-wrap header .header-menu ul li a {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
  }
  .hvr-underline-from-center:before,
  .header-wrap header .header-menu ul li a::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #64b6ae;
    height: 2px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .header-wrap header .header-menu ul li.active a::before {
    background: #14364D;
    -webkit-transition-property: background-color;
    transition-property: background-color;
  }
  .hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before,
  .header-wrap header .header-menu ul li a:hover:before,
  .header-wrap header .header-menu ul li a:focus:before,
  .header-wrap header .header-menu ul li a:active:before {
    left: 0;
    right: 0;
  }
  .header-wrap header .header-menu ul li.active a:hover:before,
  .header-wrap header .header-menu ul li.active a:focus:before,
  .header-wrap header .header-menu ul li.active a:active:before {
    background: #64b6ae;
  }
/* Rectangle Out */
.hvr-rectangle-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    background: #e1e1e1;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .hvr-rectangle-out:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #60a6a6;
    border-radius: 6px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
    color: white;
  }
  .hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
