@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=PT+Sans+Narrow:wght@400;700&display=swap");

:root {
    --faded--color: #b0dbdb;
    --primary--color: #235982;
    --dark-primarry--color: #043357;
    --secondary--color: #aec2cb;
    --text-color: #343434;
    --primary-font: "PT Sans Narrow", sans-serif;
    --secondary-font: "Montserrat", sans-serif;
}

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

img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    vertical-align: middle;
}

a:hover,
a {
    text-decoration: none;
}

body {
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 600;
}

/* Default CSS */

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 0 30px;
}

.container-large {
    max-width: 1600px;
}

.container-small {
    max-width: 900px;
}

.sw-flex {
    display: flex;
}

.sw-between {
    justify-content: space-between;
}

.sw-center {
    align-items: center;
}

.sw-wrap {
    flex-wrap: wrap;
}

.sw-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 30px;
}

.col-2 {
    grid-column: span 2;
}

.col-4 {
    grid-column: span 4;
}

.col-6 {
    grid-column: span 6;
}

.col-8 {
    grid-column: span 8;
}

.col-7 {
    grid-column: span 7;
}

.col-5 {
    grid-column: span 5;
}

/* .site-header {
    position: fixed;
    width: 100%;
    z-index: 111;
    background: linear-gradient(to bottom, var(--primary--color), transparent);
} */

.site-header {
    position: absolute;
    background: #235982ab;
    top: 0;
    z-index: 1;
    width: 100%;
}
/* Mobile Menu */

.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 111;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transition: transform 0.8s ease 0s;
    -webkit-transition: transform 0.8s ease 0s;
    -moz-transition: transform 0.8s ease 0s;
    -ms-transition: transform 0.8s ease 0s;
    -o-transition: transform 0.8s ease 0s;
}

.mobile-header > nav.js-bgnav {
    width: 100%;
    height: 100%;
    position: relative;
}

.mobile-header > nav.js-bgnav::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/skywalk-photo1.jpg") 0 0 no-repeat;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.mobile-header > nav > div.mobile-navigation {
    position: relative;
    z-index: 111;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    place-items: center;
}

.mobile-header > nav > div > ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-header > nav > div > ul > li {
    padding-bottom: 50px;
    display: inline-block;
}

.mobile-header > nav > div > ul > li > a {
    display: block;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -ms-transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1),
        opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-1000%);
    -webkit-transform: translateX(-1000%);
    -moz-transform: translateX(-1000%);
    -ms-transform: translateX(-1000%);
    -o-transform: translateX(-1000%);
    margin: 20px 40px;
    font-family: "PT Sans Narrow", sans-serif;
    text-shadow: 2px 1px 2px #0000004f;
}

.bg-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: none;
}

.showMenu .mobile-header {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.menuClose {
    position: absolute;
    left: 25px;
    top: 25px;
    font-size: 25px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 1px solid var(--primary--color);
    color: var(--primary--color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    z-index: 999;
    cursor: pointer;
}

.showMenu .mobile-header > nav > div > ul > li > a {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transition-delay: 0.2s;
}

.showMenu .banner-anim {
    position: absolute;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.banner-anim img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    overflow: hidden;
    z-index: -1;
}

.mobile__header-right {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 999;
}

.burgermenu {
    display: block;
    position: relative;
    cursor: pointer;
}

.burgermenu img {
    width: 30px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.burgermenu span,
.burgermenu span::before,
.burgermenu span::after {
    display: block;
    cursor: pointer;
    width: 15px;
    height: 2px;
    background-color: #fff;
}

.burgermenu span::before,
.burgermenu span::after {
    content: "";
    position: absolute;
    top: -8px;
    width: 26px;
}

.burgermenu span::after {
    top: auto;
    bottom: -8px;
}

.header-logo img {
    width: 200px;
    padding: 25px 0;
}

.btn {
    position: relative;
    overflow: hidden;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 15px;
    padding: 18px 18px 17px;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--primary--color);
}

.btn-small {
    font-size: 12px;
    padding: 15px;
}

.btn span:first-child {
    position: relative;
    transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 10;
}

.btn span:last-child {
    color: white;
    display: block;
    position: absolute;
    bottom: 0;
    transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
    z-index: 100;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translateY(225%) translateX(-50%);
    height: 14px;
    line-height: 100%;
    width: 100%;
    text-align: center;
    /* height: 100%; */
}

.btn:hover {
    border: none;
    color: #111;
}

.btn:after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-primarry--color);

    transform-origin: bottom center;
    transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
    transform: skewY(9.3deg) scaleY(0);
    z-index: 50;
}

.btn:hover:after {
    transform-origin: bottom center;
    transform: skewY(9.3deg) scaleY(2);
}

.btn:hover span:last-child {
    transform: translateX(-50%) translateY(-50%);
    opacity: 1;
    transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}

/*
.banner__section {
  height: 100vh;
} */

.banner__section img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner__section > div {
    position: relative;
    height: 100vh;
}

.banner-text {
    width: 100%;
    padding: 0 50px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}

.banner-text > div {
    position: relative;
}

/* .banner-text > div::after {
  content: "";
  position: absolute;
  left: 390px;
  top: 30px;
  width: 40%;
  height: 1px;
  background-color: #111;
} */

/* .banner-contents {
  --spacing: 4rem;
  width: 100%;
  height: 100vh;
  position: fixed;
} */

/* .banner-contents {
  display: flex;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
} */

/* .banner-contents:not(:first-child) {
  opacity: 0;
  visibility: hidden;
} */

.banner-text h1 {
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #00000096;
    /* -webkit-text-stroke: 1px var(--primary--color); */
    font-size: 50px;
    color: #fff;
    font-family: "PT Sans Narrow", sans-serif;
    margin-bottom: 20px;
}

.banner-text p {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    width: 25%;
    color: #fff;
    line-height: 1.6;
    text-shadow: 1px 1px 1px #00000096;
    font-weight: 600;
}

/* .background-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-position: center;
  will-change: transform;
  background-size: cover;
} */

.banner-with-anim {
    position: relative;
}

.banner-contents {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
}

.banner-contents:last-child {
    position: sticky;
}

.services-tabs {
    text-align: right;
    position: sticky;
    top: 75px;
}

.services-tabs h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: var(--primary--color);
    margin-bottom: 75px;
}

.services-tabs ul {
    margin: 0;
    padding: 0;
    list-style: none;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
}

.services-tabs ul li {
    margin-bottom: 15px;
}

.services-tabs ul li a {
    color: #111;
    font-weight: 600;
    text-transform: none;
    font-size: 18px;
    justify-content: flex-end;
}

.services-tabs ul li a.active {
    color: var(--primary--color);
}

.services-img > a {
    display: block;
    width: 100%;
    height: 568px;
}

.services-img > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tabContents {
    z-index: 1;
    position: relative;
    opacity: 1;
    overflow: hidden;
    transition: all 1s ease;
    top: 0;
}

.section {
    padding: 80px 0;
}

.uk-tab::before {
    display: none;
}

.uk-tab > .uk-active > a,
.services-tabs ul li a:hover {
    color: var(--primary--color);
    border-color: transparent;
}

.services-desc h3 {
    font-size: 45px;
    color: var(--primary--color);
    margin-bottom: 30px;
    margin-top: 15px;
    font-weight: bolder;
    line-height: 1.3;
    text-transform: uppercase;
}

.services-desc p {
    line-height: 27px;
    font-size: 18px;
    color: #111;
    font-weight: 600;
    margin: 0;
}

.services-desc img {
    width: 64px;
}

.services__tab--layout {
    height: 100%;
}

.services__tab--layout .owl-carousel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resturants-animities {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.resturants-animities ul {
    padding-left: 15px;
}

.resturants-animities ul li {
    margin-bottom: 12px;
    font-weight: 600;
    color: #111;
}

.resturants-animities ul li::marker {
    color: var(--dark-primarry--color);
}

/*
.pinned-image {
  color: white;
  display: flex;
  height: 100vh;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pinned-image__container {
  padding-top: 58%;
  position: relative;
  width: 100%;
  transform: scale(0.75);
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  -o-transform: scale(0.75);
}
.pinned-image__container-overlay {
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.pinned-image__container img {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.pinned-image__contents {
  font-weight: 300;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.pinned-image__contents h3 {
  font-size: 50px;
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  text-transform: uppercase;
} */

.other__services {
    width: 400%;
    height: 100vh;

    display: flex;
    flex-wrap: nowrap;
}

.video-background {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}

.blueprint__skywalk {
    height: 1000vh;
}

.skywalk-desc {
    width: 75%;
}

.skywalk-tower-photo {
    position: relative;
}

.skywalk-tower-briefing {
    position: absolute;
    left: 0;
    top: 0;

    display: block;
    width: 53%;
    text-align: left;
    border-bottom: 1px solid #111;
}

.skywalk-tower-briefing.skywalk-tower-total {
    top: 0;
}

.skywalk-tower-briefing.skywalk-tower-top {
    top: 11%;
}

.skywalk-tower-briefing.skywalk-tower-second {
    top: 16%;
}

.skywalk-tower-briefing.skywalk-tower-third {
    top: 23%;
}

.skywalk-tower-briefing.skywalk-tower-fourth {
    top: 28%;
}

.skywalk-tower-photo img {
    height: 700px;
}

.skywalk-tower-photo {
    text-align: right;
}

/* Portrait Photo Scroll */
.portrait-skywalk {
    /* height: 100vh; */
}

.portrait-skywalk img,
.skywalk-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heading {
    font-size: 40px;
    text-transform: uppercase;
    color: var(--primary--color);
}

.services__section,
.faq__photos {
    position: relative;
}

/* .services__section > .container {
  position: relative;
  z-index: 11;
} */

.services__section--two {
    position: relative;
}

.services__section--two::before,
.faq__photos::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.1;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/hero.png") 0 0 no-repeat;
    background-size: cover;
    z-index: -1;
}

.faq-content {
    overflow: hidden;
    display: none;
    color: #111;
    line-height: 1.8;
}

.ask-questions {
    margin-top: 100px;
}

.ask-questions h4 {
    font-size: 22px;
    font-family: "Montserrat", sans-serif;
}

.faq-questions ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-questions ul li {
    position: relative;
    padding: 20px 15px;
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.faq-questions ul li a {
    display: block;
    color: var(--primary--color);
    font-size: 18px;
    font-weight: 500;
}

.heading-wrap {
    margin-bottom: 40px;
}

.faq-questions ul li a::after {
    content: "\2b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    color: var(--primary--color);
    position: absolute;
    right: 20px;
    top: 13px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid var(--primary--color);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    cursor: pointer;
}

.faq-questions ul li a.faq-show::after {
    content: "\f068";
}

/* Full Image */
.full--img {
    position: relative;
    max-width: 1000px;
    height: 100%;
    margin-left: auto;
}

.hero-clouds {
    position: absolute;
    right: 0;
}

.full--img > img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.hero-clouds.hero-clouds-bottom {
    bottom: 0;
    z-index: 2;
    right: 400px;
}

.hero-clouds.hero-clouds-left {
    left: 0;
    right: auto;
    bottom: 0;
}

.hero-clouds.hero-clouds-top {
    left: -340px;
    right: auto;
    top: -160px;
}

.full--img .uk-marker {
    background: var(--primary--color);
    z-index: 1;
}

.skywalk__desc > a:first-child {
    display: block;
    width: 100%;
    height: 230px;
}

.skywalk__desc > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-btns {
    width: 100%;
}

.cta-btns h3 {
    text-transform: uppercase;
}

.skywalk__desc {
    width: 350px;
    padding: 20px;
    background: #f5f1e5;
}

.skywalk__fullImg {
    position: relative;
    padding: 15px;
}

.skywalk__fullImg .heading-wrap {
    text-align: center;
    color: transparent;
    position: sticky;
    top: 150px;
}

.skywalk__fullImg .heading-wrap .heading {
    /* color: transparent; */
    color: var(--primary--color);
    color: #111;
    font-size: 85px;
    font-weight: 400;
}

.skywalk__fullImg .cursor-dot,
.skywalk__fullImg .cursor-dot-outline {
    pointer-events: none;
    z-index: 9999;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.skywalk__fullImg .cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #dc5656;
}

.skywalk__fullImg .cursor-dot-outline {
    width: 40px;
    height: 40px;
    background-color: rgba(229, 128, 128, 0.5);
}

/* Full Image */

#services-container {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
    overflow: hidden;
    background-color: #ddd;
}

#services-container .services__content {
    position: relative;
    min-width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #333;
    text-align: left;
}

#services-container .services__content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pinned-image__contents {
    font-weight: 300;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.pinned-image__contents h3 {
    font-size: 75px;
    color: #fff;
    text-shadow: 1px 1px 1px #00000042;
    text-transform: uppercase;
}

.quick-links p {
    color: #000000f0;
    font-size: 16px;
    padding: 6px 0;
    margin: 0;
    font-weight: 500;
}

.quick-links p a {
    color: #000000f0;
}

.quick-links h4 {
    margin: 0;
    text-transform: uppercase;
    color: var(--primary--color);
    font-size: 22px;
    letter-spacing: 1px;
    padding-bottom: 14px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 600;
}

.quick-links ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.quick-links ul li a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    color: #000000f0;
    font-size: 14px;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
    font-weight: 500;
}

.quick-links ul li a:before {
    content: "\f105";
    position: absolute;
    top: 8px;
    left: -16px;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.quick-links ul li a:hover:before {
    opacity: 1;
    left: 0;
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: visible;
}

.quick-links ul li a:hover {
    color: var(--primary--color);
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -ms-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
    padding-left: 20px;
}

.quick-links h4:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    background: var(--primary--color);
    content: "";
    height: 2px;
}

.footer-logo {
    text-align: center;
    position: relative;
    padding: 15px 0;
    padding-top: 0;
}

.footer-logo > a {
    display: block;
    width: 70px;
    margin: auto;
    background: #e8eef3;
    position: relative;
}

.footer-logo:before {
    content: "";
    background: #00000021;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.site-footer {
    background: #e8eef3;
    padding: 30px 0;
    position: relative;
    z-index: 111;
    overflow: hidden;
}

.site-footer:before,
.site-footer:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(//www.skywalknepal.com/wp-content/themes/skywalk/./assets/img/footer-banner.png)
        0 0 no-repeat;
    height: 550px;
    width: 400px;
    opacity: 0.05;
}

.site-footer:after {
    left: auto;
    right: 0;
    transform: scaleX(-1);
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    display: inline-block;
}

.footer-links ul li a,
.copyright {
    padding: 0 6px;
    color: #000000f0;
    font-size: 14px;
    font-weight: 500;
}

.footer-links ul li a {
    color: var(--primary--color);
}

.footer-bottom {
    margin-top: -38px;
    position: relative;
}

.social-links {
    margin-top: 12px;
}

.social-links > a {
    font-size: 20px;
    margin-right: 12px;
    color: #111;
}

.social-links > a i.fa-brands.fa-facebook-f {
    color: #4267b2;
}

.social-links > a i.fa-brands.fa-twitter {
    color: #1da1f2;
}

.social-links > a i.fa-brands.fa-youtube {
    color: red;
}

.social-links > a i.fa-brands.fa-instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.anchor-text {
    margin-top: 12px;
    color: var(--primary--color);
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 10px;
    letter-spacing: 0.4px;
    font-size: 14px;
    position: relative;
}

.anchor-text:before {
    width: 20%;
    height: 2px;
    background: #000;
    content: "";
    position: absolute;
    transition: 0.3s linear;
    bottom: 0;
    left: 0;
}

.anchor-text:hover {
    color: var(--primary--color);
    transition: 0.3s linear;
}

.anchor-text:hover:before {
    width: 100%;
    transition: 0.3s linear;
    background: var(--primary--color);
}

.copyright a,
.copyright p {
    color: #111;
    margin: 0;
}

.copyright br {
    display: none;
}

.slides {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
}

.slides .list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.slides .slide {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide .background {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-position: center;
    will-change: transform;
    background-size: cover;
}

.slide .banner-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    align-items: center;
    color: #fff;
}

.slide .banner-content > div {
    width: 100%;
}

.slide:first-child .banner-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
}

/*
.slide:nth-child(2) .banner-content {
  max-width: 20%;
} */

/* .slide:nth-child(4) .banner-content h1 {
  font-size: 100px;
  text-align: left;
  text-transform: capitalize;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
} */

.banner-content h1 {
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #0000004d;
    /* -webkit-text-stroke: 1px var(--primary--color); */
    font-size: 75px;
    color: #fff;
    font-family: "PT Sans Narrow", sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
}

.banner-content h1 span {
    position: relative;
    /*! background: var(--faded--color); */
    color: #111;
    padding: 0 14px;
    font-weight: 600;
    font-style: italic;
    text-shadow: none;
    padding-right: 35px;
}

.banner-content h1 span::after {
    content: "";
    background: var(--faded--color);
    transform: skew(-25deg);
    -webkit-transform: skew(-25deg);
    -moz-transform: skew(-25deg);
    -ms-transform: skew(-25deg);
    -o-transform: skew(-25deg);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.slide:first-child .banner-content h1,
.slide:nth-child(2) .banner-content h1 {
    font-weight: 400;
    font-size: 110px;
    text-align: center;
}

.slide:nth-child(2) .banner-content h1 {
    font-size: 100px;
}

.banner-content p {
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    width: 50%;
    color: #fff;
    line-height: 1.5;
    text-shadow: 1px 1px 1px #0000000d;
    /* font-weight: 600; */
    margin: 0;
}

.cta-btns p {
    color: #111;
    line-height: 1.6;
    margin: 0;
    margin-top: 15px;
}

.owl-nav {
    text-align: center;
    margin-top: auto;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    color: var(--primary--color);
}

.owl-nav .owl-prev {
    margin-right: 25px;
}

.owl-nav button::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary--color);
    font-size: 25px;
}

.owl-nav button.owl-prev::before {
    content: "\f104";
}

.owl-nav button span {
    display: none;
}

::selection {
    background: var(--faded--color);
    color: #111;
}

.header-default {
    position: static;
    background: var(--primary--color);
}

.header-default .header-right .btn {
    background: #c6d4df;
    color: #111;
}

/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
    padding: 0;
    display: flex;
    justify-content: center;
}

#progressbar li {
    list-style-type: none;
    color: #333;
    font-size: 17px;
    font-weight: 500;
    width: 59%;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 10px;
    color: #333;
    background: #eee;
    margin: 0 auto 15px auto;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

#progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #eee;
    position: absolute;
    left: -50%;
    top: 18px;
    z-index: -1;
}

#progressbar li:first-child:after {
    content: none;
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--primary--color);
    color: white;
}

.formOutput {
    max-width: 500px;
    margin: auto;
}

/* .ticketType {
  margin-bottom: 25px;
} */

.ticketType label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.ticketType select,
.ticketType input[type="text"],
.ticketType input[type="date"] {
    padding: 14px 18px;
    width: 100%;
    color: #090909;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    background-color: #f8fafc;
    border-radius: 4px;
    height: auto !important;
    font-size: 14px;
}

.ticketType button {
    border: none;
    padding: 15px 25px;
    font-family: "Montserrat", sans-serif;
}

.heading-wrap p {
    font-size: 16px;
    color: #111;
    line-height: 1.6;
    font-weight: 500;
}

.heading span {
    display: block;
    font-size: 30px;
    font-weight: 500;
}

/* .ticketType > div > div:last-child {
  margin-top: 30px;
} */

fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative;
}

fieldset:not(:first-of-type) {
    display: none;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

.action-button,
.action-button-previous {
    border: none;
    padding: 15px 20px;
    font-family: "Montserrat", sans-serif;
    vertical-align: middle;
}

.action-button:hover,
.action-button-previous:hover {
    color: #fff;
    background: var(--dark-primarry--color);
}

.ticketPricing {
    padding: 18px 23px;
    background-color: var(--primary--color);
    /* border-radius: 4px; */
}

.ticketPricing h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.ticketPricing span,
.ticketPricing h4 {
    color: #fff;
}

.showOnClick {
    display: none;
}

.payment-method {
    text-align: center;
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
}

.payment-method > label {
    display: inline-block;
    margin-right: 15px;
    border: 1px solid #eee;
    padding: 16px;
    border-radius: 4px;
    /* height: 100%; */
    /* line-height: 100%; */
    display: flex;
    align-self: stretch;
    align-items: center;
}

.payment-method > label img {
    width: 150px;
    margin-left: 15px;
}

.default--banner__section .img-bg {
    display: block;
    width: 100%;
}

.default--banner__section .img-bg img {
    width: 100%;
    /* max-height: 550px; */
    height: 100vh;
    object-fit: cover;
}

/* .default--banner__section::before {
    content: "";
    background: var(--primary--color);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
} */

.default--banner__section {
    position: relative;
}

.text-danger {
    color: red;
}

.banner--text {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.heading-banner {
    text-transform: uppercase;
    font-size: 50px;
    color: #fff;
    text-shadow: 1px 1px 0px #00000086;
}

.ticket__choice > a {
    display: block;
    width: 100%;
    height: 250px;
    position: relative;
}

.ticket__choice > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticket__choice .pricing {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary--color);
    padding: 5px 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

.ticket__choice .pricing span {
    font-size: 12px;
}

.title {
    margin: 0;
    color: var(--primary--color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.title a {
    color: var(--primary--color);
}

.title a:hover {
    color: var(--dark-primarry--color);
}

/* .pricing {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.pricing span {
  display: block;
  font-size: 14px;
  font-weight: 500;
} */

.ticket__choice > div {
    display: flex;
    flex-direction: column;
    padding: 25px;
    box-shadow: 0 0 15px #0000002c;
}

.ticket__choice .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.ticket__choice ul {
    padding-left: 13px;
    margin: 0;
    margin-bottom: 15px;
}

.ticket__choice ul li {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 0;
}

.ticket__choice ul li::marker {
    color: var(--primary--color);
}

.site-menu,
.site-menu-mask {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
}

.site-menu-book svg {
    width: 25px;
    margin-right: 15px;
    fill: #fff;
}

.site-menu {
    z-index: 1000;
    display: flex;
    width: 100%;
    overflow-y: auto;
    color: #fff;
    background: #f6efe2;
    clip-path: inset(0 100% 0 0);
    pointer-events: none;
    transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.site-menu .site-menu-close {
    position: fixed;
    z-index: 10;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--primary--color);
    border: none;
    background: #f6efe2;
    top: 20px;
    cursor: pointer;
}

.site-menu-mask {
    z-index: 999;
    width: 100%;
    background: #111;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s 0.3s, visibility 1s 0.3s;
}

.site-menu-mask.site-menu-is-open {
    opacity: 0.75;
    visibility: visible;
    transition: opacity 1s, visibility 1s;
}

.site-menu .site-menu-image {
    flex: 1;
    background-color: #a2a4a7;
    background-position: center;
    background-size: cover;
}

.site-menu .site-menu-main {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-x: hidden;
    padding: 60px 0 0;
    width: 50%;
    max-width: 500px;
    justify-content: center;
}

.site-menu.site-menu-is-open {
    pointer-events: auto;
    clip-path: inset(0 0 0 0);
}

.site-menu .site-menu-main .site-menu-nav-container {
    flex: 1;
}

.site-menu .site-menu-main .site-menu-nav-container > div > ul {
    width: 100%;
    margin: 0;
    padding: 0 0 0 46px;
    list-style: none;
    transform: translateX(0);
    visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-menu .site-menu-main .site-menu-nav-container > div > ul > li > a {
    display: inline-flex;
    align-items: center;
    padding: 18px 0;
    font-size: 20px;
    line-height: 1.475;
    color: var(--primary--color);
    visibility: visible !important;
    transition: color 0.3s ease, opacity 0.6s ease;
    font-weight: 600;
    text-transform: uppercase;
}

.site-menu .site-menu-main .site-menu-nav-container > div > ul > li:hover > a {
    opacity: 0.96;
    transition: color 0.3s ease, opacity 0.6s ease;
}

.site-menu .site-menu-main .site-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
    align-items: center;
}

.site-menu-footer .site-menu-contacts {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.75;
}

.site-menu-footer .site-menu-contacts li a {
    display: inline-block;
    color: var(--primary--color);
    transition: color 0.3s ease;
    font-size: 18px;
    font-weight: 300;
}

.site-menu-footer .site-menu-contacts li a:hover {
    color: var(--dark-primarry--color);
}

.site-menu .site-menu-main .site-menu-book {
    z-index: 20;
    position: sticky;
    bottom: 0;
    padding: 25px 40px;
}

.btn.btn-white {
    color: #fff;
    background: var(--primary--color);
}

.site-menu-logo {
    text-align: center;
}

.site-menu .site-menu-main .site-menu-nav-container > div {
    height: 100%;
    display: flex;
}

.site-menu .site-menu-main .site-menu-book .btn {
    width: 100%;
    text-align: center;
}

.site-menu-logo img {
    width: 100px;
}

.total-ticket-passses {
    padding: 15px 0;
}

.ticket__passes {
    padding: 25px 0;
}

.total-result {
    color: #111;
}

.total-result p {
    margin: 0;
}

.total-result strong {
    color: var(--primary--color);
}

.ticket-filter select {
    cursor: pointer;
    padding: 9px 49px 9px 16px !important;
    width: 100%;
    color: #090909;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    background-color: #f8fafc;
    border-radius: 4px;
    height: 50px !important;
    font-size: 14px;
}

.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
    stroke: #111;
}

.site-footer .container {
    position: relative;
    z-index: 111;
}

.scale {
    overflow: hidden;
}

.scale img {
    transition: 0.3s ease-in-out;
}

.scale:hover img {
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
}

/* .slide:nth-child(2) .banner-content span {
  font-family: var(--primary-font);
  font-size: 25px;
  color: #fff;
  font-weight: 700;
}

.slide:nth-child(2) .banner-content h1 {
  font-size: 68px;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
  text-align: left;
  margin-top: 0;
} */

.slide:nth-child(2) .banner-content {
    text-align: left;
    max-width: 100%;
}

.services__tab--layout > div > div {
    margin-top: auto;
}

#video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
}

#video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
}

.services-desc {
    width: 80%;
    margin-inline: auto;
    text-align: center;
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.services__section--two .sw-grid {
    grid-template-columns: repeat(12, 1fr);
    align-items: stretch;
}

.services__section--two .sw-grid .col-4:first-child {
    grid-column: span 4;
    padding-right: 25px;
}

.service-container img {
    max-height: 550px;
    width: 100%;
    object-fit: cover;
}

.services__section--two .sw-grid .col-4:nth-child(2) {
    grid-column: span 4;
}

.services--images-first img {
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

.services--images-two img {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

.services__section--two .sw-grid .col-4:nth-child(3) {
    padding-left: 25px;
    grid-column: span 4;
}

.services__section--two {
    padding: 200px 0;
}

.mainTicketing {
    margin-top: 30px;
    padding: 20px 0;
    background: #f8fafc;
}

.accordion-tickets {
    position: relative;
    padding: 0 45px;
}

.accordion-tickets select {
    background: #fff;
}

/* .accordion-tickets {
    position: relative;
    padding: 20px 45px;
    border: 1px solid #eee;
    margin-top: 30px;
    background: #f8fafc;
}

.accordion-tickets select {
    background: #fff;
} */

.delete-row > a {
    position: absolute;
    right: 12px;
    top: 25px;
    width: 25px;
    height: 25px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    background: red;
    /* border: 1px solid #043357; */
    border-radius: 50px;
    cursor: pointer;
}

.ticketPricing .uk-grid + .uk-grid-medium {
    margin-top: 15px;
}

.font-normal {
    font-weight: normal;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    color: var(--primary--color);
}

.ticketPricing {
    /* background: var(--faded--color); */
    padding: 15px;
    border-top: none;
    border-top: 1px solid #eeeeee1f;
}

.ticketPricing {
    text-align: center;
}

.payment-method {
    text-align: center;
}

.payment-method img {
    width: 250px;
}

.payment-method > label input {
    display: none;
}

.active {
    background-color: #23598261;
}

.priceDisplay {
    margin: 15px 0;
}

.totalPricing {
    position: relative;
}

.totalPricing::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/ticketing-line.svg") 0 0 no-repeat;
    background-size: cover;
    z-index: 2;
}

/* .ticketPricing.totalPricing::before {
	display: none;
} */

.buy--section {
    display: flex;
    align-items: center;
    height: 100%;
}

.buy--section > div {
    width: 100%;
}

.buy-ticket-body {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* .buy--section::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 330px;
	height: 330px;
	background: url('../img/towerblue.png') center center no-repeat;
	background-size: contain;
	opacity: .3;
    z-index: -1;
} */

/* .buy--section::after {
    right: 0;
    left: auto;
} */

/* .all__tickets .accordion-tickets:not(:first-child)  {
    padding-bottom: 20px;
}


.all__tickets .accordion-tickets:first-child {
    padding-bottom: 20px;
    padding-top: 20px;

} */

.paymentSuccess {
    margin-top: 50px;
}

.paymentSuccess img {
    width: 100px;
    margin-bottom: 15px;
}

.paymentSuccess p {
    margin: 0;
    margin-top: 7px;
    font-size: 14px;
    width: 50%;
    margin: auto;
    font-style: italic;
    color: #333;
    font-weight: 600;
}

body.successPage {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sucess-page-content {
    flex: 1;
}

.paymentSuccess-title {
    color: green;
}

.paymentFailed {
    color: red;
}

.sucess-page-content {
    flex: 1;
    background: #fefcfc;
}

.paymentSuccess.paymentFailure img {
    width: 250px;
    margin-bottom: 0;
}

.default--banner__section {
    min-height: 100%;
    background-size: cover;
    background-attachment: fixed;
    background-position: right;
    padding-top: 120px;
    padding-bottom: 50px;
}
.payment-method > label {
    position: relative;
}

.payment-method > label.active::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 0;
    color: green;
    z-index: 1;
}

.header-logo span {
    color: #fff;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    font-family: "PT Sans Narrow", sans-serif;
    letter-spacing: 5px;
    vertical-align: middle;
    margin-left: 15px;
    line-height: 100%;
    display: inline-block;
    padding-left: 15px;
    border-left: 1px solid #fff;
}
