/*!
Theme Name: Skywalk Nepal 2024
Theme URI: https://www.skywalknepal.com/
Author: Genesis Web Technology
Author URI: https://www.genesiswtech.com/
Description: Skywalk Nepal is more than just a venue; it’s a vision brought to life by our parent company, Wonders Nepal.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wondersnepal
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

@import url("https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

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

a,
a:hover,
a:active {
  color: var(--text-color);
  text-decoration: none;
}
body {
  font-family: var(--secondary-font);
}

p {
  margin: 0;
  line-height: 1.5;
  color: var(--text-color);
}
ul,
ol {
  margin: 0;
  padding: 0;
}
img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
h1,
h2,
h3,
h5,
h4,
h6 {
  font-family: var(--primary-font);
  margin: 0;
  color: var(--text-color);
}
.section {
  padding: 75px 0;
}
.section-t {
  padding-top: 75px;
}
.section-b {
  padding-bottom: 75px;
}
.page-section {
  padding: 60px 0;
}
.page-section-t {
  padding-top: 60px;
}
.page-section-b {
  padding-bottom: 60px;
}

.site-header {
  box-shadow: 0 0 5px #0000001c;
}
/* .site-header {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 6;
} */
.site-branding {
  display: flex;
  justify-content: space-between;
}
.site-sticky.uk-sticky.uk-active .custom-logo {
  width: 70px;
}

/* .site-sticky.uk-sticky.uk-active {
  background-color: #0433578c;
  z-index: 96999999;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
} */
.site-sticky.uk-sticky.uk-active {
  background-color: #fff;
}
.btn__ham {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-branding .custom-logo {
  width: 75px;
  padding: 20px 0;
}
.ham-menu {
  display: none;
}
.offcanvas {
  display: none;
}
.logo__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
/* navigation */

.main-navigation,
.main-navigation .menu-menu-1-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  justify-content: end;
}
.main-navigation > div > ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.main-navigation > div > ul > li {
  /* padding: 0 10px 0 0; */
  position: relative;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/* .main-navigation > div > ul > li.menu-item-has-children {
   padding-right: 20px;
   } */
.main-navigation > div > ul > li:last-child {
  padding-right: 0;
}

.main-navigation > div > ul > li i {
  color: #fff;
  font-size: 13px;
  margin-left: 5px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
}

.main-navigation > div > ul > li:hover i {
  color: #fff;
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.main-navigation > div > ul > li > a {
  font-weight: 700;
  font-size: 15px;
  position: relative;
  z-index: 1000;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  padding: 18px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--primary--color);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
}

/* .main-navigation > div > ul > li > a::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--primary);
   transition: 0.3s all ease-in-out;
   -webkit-transition: 0.3s all ease-in-out;
   -moz-transition: 0.3s all ease-in-out;
   -ms-transition: 0.3s all ease-in-out;
   -o-transition: 0.3s all ease-in-out;
 } */

.main-navigation > div > ul > li > a:hover::after,
.main-navigation > div > ul > li.menu-item-has-children:hover > a::after {
  width: 100%;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}
.main-navigation > div > ul > li:last-child > a {
  margin: 0;
}
.main-navigation > div > ul > li > ul {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  width: 230px;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  top: 170%;
  background: #fff;
  -webkit-box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 0;
}
.main-navigation > div > ul > li > ul::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% + 10px);
  left: 0;
  top: -10px;
}
.main-navigation > div > ul > li > ul::after {
  content: " ";
  position: absolute;
  left: 10px;
  top: -7px;
  border-top: none;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #fff;
}

.main-navigation > div > ul > li:hover > ul {
  opacity: 1;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  visibility: visible;
  top: calc(100% + 10px);
  z-index: 1000;
}
.main-navigation ul > li > ul > li {
  position: relative;
}
.main-navigation ul > li > ul > li > ul {
  position: absolute;
  left: calc(100% + 10px);
  top: 20%;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  width: 230px;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  background: #fff;
  -webkit-box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.main-navigation > div > ul > li > ul > li ul::before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 100%;
  width: calc(100% + 20px);
  top: 0;
  left: -20px;
}
.main-navigation > div > ul > li > ul > li ul::after {
  content: " ";
  position: absolute;
  left: -7px;
  top: 7px;
  border-top: 7px solid transparent;
  border-right: 7px solid #fff;
  border-left: none;
  border-bottom: 7px solid transparent;
}
.main-navigation ul > li > ul > li:hover > ul {
  top: 0;
  opacity: 1;
  -webkit-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  visibility: visible;
  z-index: 1000;
}

.main-navigation > div > ul > li > ul li > a {
  font-family: var(--primary-bold-font);
  font-size: 15px;
  color: #666;
  display: inline-block;
  line-height: 1.9;
  position: relative;
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  text-transform: capitalize;
}
.main-navigation > div > ul > li > ul li > a:hover,
.main-navigation > div > ul > li.menu-item-has-children > ul li:hover > a {
  background: #3958802c;
  color: var(--primary);
}
.main-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.main-navigation > div > ul > li {
  /* position: relative; */
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.main-navigation > div > ul > li:hover > a {
  color: var(--dark-primarry--color);
}
.main-navigation > div > ul > li.menu-item-has-children > a {
  padding-right: 27px;
}

.main-navigation > div > ul > li.menu-item-has-children > a::before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: var(--primary--color);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
}
.main-navigation > div > ul > li.menu-item-has-children:hover > a::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  color: var(--dark-primarry--color);
}
.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a,
.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a::after,
.main-navigation
  > div
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > ul
  > li.menu-item-has-children
  > a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: block !important;
  font-size: 10px;
}
/* navigation */

.site-menuwrap {
  display: flex;
  gap: 15px;
  align-items: center;
}

.site-menuimg {
  display: flex;
  gap: 10px;
  align-items: center;
}
.site-menuimg span {
  color: #fff;
  font-weight: 500;
  line-height: 0;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.site-menu {
  cursor: pointer;
  width: 45px;
  height: 45px;
  background: var(--primary--color);
  display: flex;
  justify-content: center;
  direction: rtl;
  padding-right: 10px;
  flex-direction: column;
  gap: 5px;
  border-radius: 100%;
}
.site-menu:hover span:nth-child(2) {
  width: 65%;
}
.site-menu span {
  transition: all 0.3s ease;
  height: 2px;
  width: 65%;
  border-radius: 15px;
  background-color: #fff;
}
.site-menu span:nth-child(2) {
  width: 32%;
}
.cta-btn {
  padding: 14px 20px;
  line-height: auto;
  display: inline-block;
  font-size: 13px;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--secondary-font);
  transition: all 0.5s ease-out;
  background-color: var(--primary--color);
  overflow: hidden;
  border: unset;
}
.cta-btn span {
  position: relative;
  z-index: 2;
}
.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--faded--color);
  z-index: 1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  transition: all 250ms;
}
.cta-btn:hover span {
  color: var(--dark-primarry--color);
}
.cta-btn:hover::before {
  width: 100%;
}
.cta-btn.big {
  padding: 12px 36px;
}
.cta-btn.mt {
  margin-top: 25px;
}
.cta-btn:hover {
  color: var(--primary--color);
}
.cta-btn.outline {
  color: var(--secondary--color);
  border: 2px solid var(--secondary--color);
  background-color: transparent;
}
.cta-btn.outline:hover {
  color: #fff;
  background-color: var(--secondary--color);
}
.bannersection .item {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  /* height: 100vh; */
  /* height: calc(100vh - 131px); */
  background-position: center;
  width: 100%;
}
/* .bannersection .item::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to top, #053255, transparent);
} */
.banner-textcontainer {
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  position: absolute;
  z-index: 5;
}
.banner-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-text span {
  font-size: 16px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.banner-text h1 {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}

.banner-text p {
  font-size: 22px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  position: relative;
  font-weight: 450;
  margin: 10px 0 15px 0;
  display: inline-block;
  font-family: var(--secondary-font);
}
.banner-text .cta-btn {
  display: block;
  text-align: center;
  width: fit-content;
}
.bannersection {
  position: relative;
  /* height: calc(100vh - 131px); */
}
.scrolldown {
  cursor: pointer;
  left: 50%;
  transform: translateX(-50%);
  bottom: 35px;
  width: 48px;
  z-index: 5;
  position: absolute;
  transition: all 0.3s ease;
}
.scrolldown:hover {
  bottom: 30px;
}
.overlay-menu {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
  height: 100vh;
}
.overlay-menu.overlaymenu-hidden {
  display: none;
  width: 0;
}
.overlay-menu.overlaymenu-hide {
  animation: slidetoright 0.3s ease forwards;
}
.overlay-menu.overlaymenu-hide i,
.overlay-menu.overlaymenu-hide .bottom-content {
  display: none;
}
@keyframes slidetoright {
  from {
    width: 100%;
    display: block;
  }
  to {
    display: none;
    width: 0;
  }
}
.overlay-menu.overlay-menuvisible {
  animation: slidetoleft 0.3s ease forwards;
}
@keyframes slidetoleft {
  from {
    display: none;
    width: 0;
  }
  to {
    width: 100%;
    display: block;
  }
}
.overlaymenu-container,
.overlaymenu-container .overlaymenu-banner img {
  height: 100%;
}

/* .overlay-menu-nav {
  background-color: var(--primary--color);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
} */

.overlay-menu-nav {
  background: var(--primary--color);
}
.overlay-menu-nav .custom-logo {
  width: 120px;
}
.overlay-menu-nav i {
  position: absolute;
  cursor: pointer;
  top: 35px;
  right: 35px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
  font-size: 18px;
  border: 2px dashed #fff;
}
.overlay-menu-nav .main-navigation ul {
  list-style: none;
  text-align: center;
}
.overlay-menu-nav .main-navigation ul li:not(:last-child) {
  padding-bottom: 25px;
}

.overlay-menu-nav .main-navigation ul li a {
  color: #fff;
  font-size: 24px;
  font-family: var(--secondary-font);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.overlay-menu-nav .main-navigation ul li a::after {
  content: " ";
  position: absolute;
  bottom: -5px;
  left: 0;
  background-image: linear-gradient(180deg, #dc143c 17.49%, #a4263f 72.49%);
  transition: all 0.3s ease;
  height: 1px;
  width: 0;
}
.overlay-menu-nav .main-navigation ul li a:hover::after {
  width: 100%;
}
.overlay-menu-nav .main-navigation ul li a:hover {
  color: var(--faded--color);
  text-shadow: none;
}
.headerwrap.text-center {
  text-align: center;
}
.headerwrap.text-center.w-55 {
  width: 55%;
  margin: 0 auto;
}
.headerwrap.text-center.w-65 {
  width: 60%;
  margin: 0 auto;
}
.headerwrap.text-center.w-half {
  text-align: center;
  width: 45%;
  margin: 0 auto;
}
.headerwrap.w-half {
  width: 45%;
}
.headerwrap span {
  font-size: 15px;
  font-weight: 800;
  display: inline-block;
  padding-bottom: 6px;
  color: var(--primary--color);
  font-family: var(--secondary-font);
  text-transform: uppercase;
}
.aboutus-container .headerwrap span {
  padding-bottom: 0;
  color: var(--secondary--color);
}
.headerwrap.mb {
  margin-bottom: 65px !important;
}
.headerwrap.mb-half {
  margin-bottom: 45px !important;
}
.headerwrap.mb-small {
  margin-bottom: 30px !important;
}
.headerwrap span.grey {
  color: #b1b1b1;
}
.headerwrap h3 {
  color: #252525;
  font-weight: 750;
  font-size: 42px;
  line-height: 1.25;
  text-transform: uppercase;
}
.headerwrap h3 {
  color: #252525;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.25;
}
.headerwrap h4 {
  color: #252525;
  font-weight: 650;
  font-size: 28px;
  line-height: 1.25;
}
.headerwrap.white h3,
.headerwrap.white h2 {
  color: #fff;
}
.headerwrap.white span {
  color: #ffffffc2;
}
.footerheader > span {
  margin-bottom: 10px;
}
.aboutus-section .headerwrap h3 {
  width: 75%;
  margin: 20px auto;
  margin-top: 6px;
}
.aboutus-section {
  padding-bottom: 95px;
  background-color: var(--dark-primarry--color);
}
/* .aboutus-section .aboutus-top img{
  opacity: 0;
  transition: all 0.3s ease;
} */
.aboutus-section .aboutus-top img {
  opacity: 1;
}
.aboutus-container {
  text-align: center;
}
.aboutus-container .headerwrap h3 {
  color: #fff;
}
.aboutus-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 27px;
}
.aboutus-content {
  margin: 20px 0;
}
.aboutus-content p:not(:last-child) {
  margin-bottom: 15px;
}
.aboutus-container > img {
  width: 95px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.custom-shape-divider-bottom-1680773413 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 6;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1680773413 svg {
  position: relative;
  display: block;
  width: calc(158% + 1.3px);
  height: 50px;
}

.custom-shape-divider-bottom-1680773413 .shape-fill {
  fill: #fff;
}

.service-section {
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
}

.service-section::after {
  content: url(./assets/img/shape.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  z-index: 4;
}
.service-section .headerwrap {
  position: relative;
  z-index: 5;
}
.service-section ul {
  list-style: none;
  position: relative;
  z-index: 5;
}
.services-container {
  position: relative;
  z-index: 5;
}

.services-container .owl-nav {
  position: absolute;
  top: -130px;
  right: 0;
  gap: 2px;
  display: flex;
  align-items: center;
}

.services-container .owl-nav button.owl-prev,
.services-container .owl-nav button.owl-next {
  width: 35px;
  height: 35px;
  display: flex;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: all 0.3s ease;
  border: 2px dashed var(--primary--color);
}
.services-container .owl-dots {
  margin-top: 15px;
}
.services-container .owl-dots .owl-dot span {
  transition: all 0.3s ease;
}
.services-container .owl-dots .owl-dot.active span {
  position: relative;
  transform: scale(1.4);
  background: var(--primary--color);
}
.services-container .owl-nav button.owl-prev:hover,
.services-container .owl-nav button.owl-next:hover {
  background-color: var(--primary--color);
  border-style: solid;
}
.services-container .owl-nav button.owl-prev:hover span,
.services-container .owl-nav button.owl-next:hover span {
  color: #fff;
}
.services-container .owl-nav button.owl-prev span,
.services-container .owl-nav button.owl-next span {
  line-height: 1.5;
  font-size: 26px;
  color: var(--primary--color);
}
.zoom-container {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
}
.zoom-container.no-br {
  border-radius: 0;
}
.zoom-container.no-br img {
  border-radius: 0;
}
.zoom-container img {
  height: 100%;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.zoom-container:hover img {
  transform: scale(1.04);
}
.eachservice-container {
  position: relative;
}
.eachservice-container .eachservice-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to top, #000, transparent);
  padding: 25px;
}
.eachservice-container .eachservice-text {
  text-align: center;
}
.eachservice-container .eachservice-text h3 a {
  color: #fff;
  line-height: 1.25;
  font-weight: 600;
  font-size: 25px;
  text-transform: uppercase;
}
.eachservice-container img {
  height: 480px;
}

.projects-section {
  position: relative;
  background-color: var(--dark-primarry--color);
}
.eachproject {
  text-align: center;
}
.eachproject img {
  height: 450px;
}
.eachproject h3 {
  margin-top: 8px;
}
.eachproject h3 a {
  color: #fff;
  font-size: 20px;
  font-family: var(--secondary-font);
  font-weight: 550;
}
.numcounter-section {
  background: #021b30de url(assets/img/banner-img.jpg);
  background-blend-mode: multiply;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
}
.numcounter-container > div > div {
  text-align: center;
}
.numcounter-container h4 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
}

.numcounter-container p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.uk-grid-divider > :not(.uk-first-column)::before {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-section li {
  padding: 15px 20px;
  border: 1px solid #e3e5ef;
  box-shadow: 0px 15px 20px -15px #d9dae5;
  border-radius: 4px;
}

.faq-section li a {
  font-size: 16px;
  font-weight: 550;
  color: var(--text-color);
}

.site-footer {
	position: relative;
	background: #043357e1 url("./assets/img/services__banner.jpg");
	background-blend-mode: multiply;
	background-size: contain;
	background-position: center;
}
/* .site {
  position: relative;
}
.site::after {
  content: "";
  background-image: url("./assets/img/tower.png");
  position: absolute;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
  object-fit: contain;
  opacity: 0.3;
  filter: grayscale(1);
  height: 450px;
  width: 150px;
} */
.site-info .custom-logo {
  width: 100px;
  filter: brightness(0) invert(1);
}
.partners-container .eachpartner {
  border: 1px solid rgba(0, 0, 0, 0.09);
  padding: 10px;
  border-radius: 8px;
}
.partners-container .eachpartner img {
  margin: 0 auto;
  width: 90%;
  text-align: center;
}
.footer-logo p {
  margin-top: 15px;
  font-size: 14px;
}
.footerhead {
  font-size: 26px;
  font-weight: 650;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 15px;
}

.footer-container ul {
  list-style: none;
}

.footer-container ul li {
  padding-bottom: 10px;
}
.footer-container ul li:last-child {
  padding-bottom: 0;
}

.footer-container ul li a,
.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 300;
}
.footer-logo p {
  line-height: 26px;
}

.footer-container {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.footer-logo {
  padding-right: 40px;
  grid-column: span 4;
}
.footer-logo p {
  margin-top: 25px;
}
.link1 {
  grid-column: span 2;
}
.link2 {
  grid-column: span 3;
}
.link3 {
  grid-column: span 3;
}

.footer-container ul:not(.socialmedia) li a:hover {
  color: #fff;
  font-weight: 500;
  padding-left: 15px;
}
.footer-container ul.socialmedia li i {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
}
.footersubhead {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}
.footer-container ul.socialmedia {
  display: flex;
  gap: 25px;
}
.footer-container ul.contactinfo li i {
  color: rgba(255, 255, 255, 0.8);
}
.footer-container ul.contactinfo li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bottomfooter {
  padding: 15px 0;
  margin-top: 55px;
  background-color: #011627;
}

.bottomfooter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottomfooter-container p,
.bottomfooter-container a {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
}
.aboutus-container {
  position: relative;
  z-index: 5;
}

.h-a-s-container::before {
  content: url("./assets/img/towerblue.png");
  position: absolute;
  bottom: 40%;
  height: auto;
  transition: all 0.8s ease-in-out;
  right: 0;
  z-index: 6;
}
.h-a-s-container.visible::before {
  bottom: 99%;
}
.h-a-s-container {
  position: relative;
  margin-top: 75px;
  border-radius: 16px;
  position: relative;
  box-shadow: 1px 57px 20px -45px rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: 1px 57px 20px -45px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 1px 57px 20px -45px rgba(0, 0, 0, 0.32);
  background-color: var(--primary--color);
  /* background-image: linear-gradient(
    270deg,
    rgba(0, 56, 147, 1) 0%,
    rgba(183, 202, 231, 1) 100%
  ); */
}
.h-a-s-container::after {
  content: " ";
  background: url("./assets/img/Curve\ Line.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.h-a-s-container > div {
  border-radius: 16px;
  overflow: hidden;
}
.h-a-s-img {
  position: relative;
  z-index: 2;
  padding: 15px;
  min-height: 650px;
}
.h-a-s-img::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary--color);
  transition: all 0.8s ease-in-out;
}
.h-a-s-img.notvisible::after {
  height: 100%;
}
.h-a-s-img.visible::after {
  height: 0;
}
.h-a-s-img img {
  height: 588px;
  border-radius: 4px;
}
.h-a-s-contentwrap > div {
  padding: 45px 35px;
  position: relative;
}
.h-a-s-contentwrap {
  position: relative;
  overflow: hidden;
}
/* .h-a-s-contentwrap::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("./assets/img/tower7.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  opacity: 0.5;
  z-index: 5;
  left: 0;
} */
.h-a-s-contentwrap .uk-tab {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  z-index: 11;
  gap: 15px;
  /* justify-content: center; */
}
.h-a-s-contentwrap .uk-tab::before {
  border-bottom: 0;
}
.h-a-s-contentwrap .uk-tab > * {
  padding-left: 0;
}
.h-a-s-contentwrap .uk-tab > li > a {
  padding: 15px 25px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  color: #ffffff8c;
  font-weight: 550;
  font-family: var(--secondary-font);
  border: 1px solid #ffffff8c;
  transition: all 0.3s ease;
}

.h-a-s-contentwrap .uk-tab > li > a:hover,
.h-a-s-contentwrap .uk-tab > .uk-active > a {
  background-color: var(--faded--color);
  border-color: var(--faded--color);
  color: var(--primary--color);
}
.h-a-s-content {
  position: relative;
  z-index: 11;
}
.h-a-s-content li iframe {
  width: 100% !important;
  border-radius: 5px;
}
.h-a-s-content li,
.h-a-s-content p,
.h-a-s-content a {
  color: #fff;
  font-size: 17px;
  line-height: 28px;
}
.h-a-s-content li > table {
  border-collapse: collapse;
  width: 100%;
}
.h-a-s-content li > table thead tr {
  border: 1px solid #ececec;
  border-bottom: 0;
  background-color: #ececec;
  text-align: center;
}
.h-a-s-content li > table thead tr td {
  padding: 15px 25px;
  color: #333;
}
.h-a-s-content li > table thead tr td:not(:last-child) {
  border-right: 1px solid #00000041;
}

.h-a-s-content li > table tbody {
  border: 1px solid #ececec;
}
.h-a-s-content li > table tbody tr td {
  padding: 10px 15px;
}
.h-a-s-content li > table tbody tr td:not(:last-child) {
  border-right: 1px solid #00000041;
}
.h-a-s-content li > table tbody tr:nth-child(even) {
  background-color: #ececec;
}
.h-a-s-content li > table tbody tr:nth-child(even) td {
  color: #333;
}
.h-a-s-content a {
  text-decoration: underline;
}
.h-a-s-content > li > ul {
  list-style-position: inside;
}
.h-a-s-content {
  padding: 35px 0;
  padding-bottom: 0;
}
.eachticket-container {
  text-align: center;
  position: relative;
  z-index: 99;
}
.eachticket-container h3 a {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
}
.eachticket-container .ticket-img {
  position: relative;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.eachticket-container .ticket-img::after {
  content: " ";
  position: absolute;
  width: 40px;
  border-radius: 100%;
  height: 40px;
  z-index: 3;
  top: 10px;
  right: 5px;
  opacity: 0.7;
  background-color: var(--faded--color);
}
.eachticket-container .ticket-img img {
  height: 54px;
  width: 54px;
  position: relative;
  z-index: 11;
}
.testimonial-section,
.faq-section {
  background-image: linear-gradient(
    180deg,
    rgba(227, 229, 239, 0.21) 55.73%,
    rgba(255, 255, 255, 0) 100%
  );
}

.gallery-section {
  background-image: linear-gradient(
    to bottom,
    var(--dark-primarry--color),
    #043357e1
  );
}
.ticket-section {
  position: relative;
  z-index: 1;
  background-color: #011627de;
}
.ticket-section::after {
  content: " ";
  background: #eee url("./assets/img/tower1080p.png");
  background-blend-mode: overlay;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.9;
  top: 0;
  left: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ticket-section .headerwrap {
  position: relative;
  z-index: 52;
}
/* .ticket-section::after {
  content: " ";
  position: absolute;
  background-image: url("./assets/img/about.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */

.testimonial-header {
  position: relative;
}
.testimonial-header::after,
.testimonial-header::before {
  content: " ";
  position: absolute;
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
  top: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.testimonial-header:hover::after,
.testimonial-header:hover::before {
  top: 40%;
}
.testimonial-header h3 {
  margin-top: 10px;
}
.numcounter-header span img,
.testimonial-header span img,
.footerheader > span img {
  width: 16px;
  margin-top: -3px;
  margin-right: 5px;
}
.numcounter-header span,
.testimonial-header span,
.footerheader > span {
  padding: 4px 15px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 450;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.9);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.342);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.testimonial-header::after {
  right: 0;
  background-image: url("./assets/img/stareye.png.png");
}
.testimonial-header::before {
  left: 0;
  background-image: url("./assets/img/smile.png.png");
}
.testimonial-section {
  text-align: center;
}
.testimonial-container ul {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 25px;
}

.testimonial-container ul li .eachtestimonial {
  border: 1px solid #e3e5ef;
  box-shadow: 0px 15px 20px -15px #d9dae5;
  border-radius: 4px;
  padding: 25px 35px;
  text-align: left;
  transition: all 0.3s ease;
}
.testimonial-container ul li .eachtestimonial:hover {
  transform: scale(1.02);
}
.testimonial-container ul li .eachtestimonial img {
  width: 48px;
  height: 48px;
  border-radius: 100%;
}
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-rating i {
  color: gold;
}
.testimonial-rating p {
  color: #222;
  font-size: 16px;
  font-weight: 600;
}
.testimonial-content {
  margin: 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review__slider .review__data p {
}
.testimonial-rating span {
  font-size: 14px;
  color: #444;
  font-weight: 400;
}
.testimonial-container ul li .eachtestimonial .testimonial-img {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-container ul li .eachtestimonial .testimonial-author p {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  line-height: 1.15;
}

.testimonial-container ul li .eachtestimonial .testimonial-author span {
  color: #555;
  font-size: 14px;
}

.discounts-offer-container {
  position: relative;
  z-index: 11;
  padding-top: 45px;
  margin-top: 45px;
  border-top: 1px solid #0038934f;
}
.eachdiscountoffer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 8px;
  overflow: hidden;
}
.discount-img {
  height: 100%;
}
.discount-img img {
  height: 100%;
}
.discount-content {
  padding: 65px 45px;
  background-color: var(--dark-primarry--color);
}

.discount-content h3 a {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}
.discount-content span {
  color: #ffffffaa;
  font-size: 14px;
}
.discount-content span i {
  margin-right: 7px;
}
.discount-content h4 {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ffffffd8;
}

.discount-content p {
  color: #ffffffd8;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin: 25px 0;
}
.discounts-offer-container .owl-carousel {
  position: relative;
}
.discounts-offer-container .owl-nav button {
  position: absolute;
}
.discounts-offer-container .owl-nav button.owl-next span {
  font-size: 0;
  display: block;
  background-image: url("./assets/img/right-arrow.png");
  width: 28px;
  height: 20px;
  background-size: cover;
}
.discounts-offer-container .owl-nav button.owl-prev span {
  font-size: 0;
  display: block;
  background-image: url("./assets/img/left-arrow.png");
  width: 28px;
  height: 20px;
  background-size: cover;
}
.discounts-offer-container .owl-nav button.owl-prev {
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
}
.discounts-offer-container .owl-nav button.owl-next {
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
}

.uk-accordion-title:focus,
.uk-accordion-title:hover {
  color: var(--text-color);
}

.followusonsocialnetwork li img {
  width: 48px;
  height: 48px;
}
.followusonsocialnetwork {
  margin-top: 45px;
  padding: 24px;
  border-radius: 8px;
  background: var(--primary--color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.followusonsocialnetwork h2 {
  font-size: 26px;
  font-weight: 550;
  color: #fff;
  width: 20%;
  text-transform: uppercase;
}
.followusonsocialnetwork > ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 15px;
}
.followusonsocialnetwork > ul li img {
  width: 38px;
  height: 38px;
}
.followusonsocialnetwork > ul li p {
  color: #fff;
  margin-top: 10px;
}
.followusonsocialnetwork > ul li {
  text-align: center;
}

.followusonsocialnetwork .tags-container ul {
  list-style: none;
}

.followusonsocialnetwork .tags-container ul li a {
  color: #fff;
}

.footerheader p {
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.8);
}

.bottom-content {
  position: absolute;
  bottom: 15px;
  left: 55%;
  text-align: center;
  transform: translateX(-50%);
}
.bottom-content ul {
  list-style: none;
  display: flex;
}
.bottom-content ul li {
  padding: 0 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.bottom-content ul li:last-child {
  border-right: 0;
  padding-right: 0;
}
.bottom-content ul li:first-child {
  padding-left: 0;
}
.bottom-content a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.ticket-container > .uk-grid {
  justify-content: center;
}

.fullpage-banner,
.fullpage-banner img {
  height: 100%;
  max-height: 850px;
}
.page-banner,
.page-banner img {
  height: 60vh;
}
.page-banner img {
  object-position: top;
}
.aboutus-container.left {
  text-align: left;
}
.aboutus-container p {
  line-height: 1.75;
  font-size: 16px;
}
.aboutus-container p:not(:last-child) {
  margin-bottom: 10px;
}
.aboutus-video {
  background: url("./assets/img/tower1080p.png") #eee;
  background-blend-mode: overlay;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.aboutus-img {
  position: relative;
  margin: 0 auto;
  width: 65%;
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
}

.aboutus-img img {
  height: 100%;
}
.aboutus-img::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.aboutus-img i {
  position: absolute;
  cursor: pointer;
  top: 50%;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%);
  color: red;
  font-size: 65px;
}
.aboutus-video .headerwrap h4 {
  line-height: 1.5;
}
.aboutus--section .uk-grid {
  align-items: center;
}

.aboutus-video .divider {
  margin: 15px auto 35px auto;
  width: 26%;
  background: radial-gradient(circle, rgba(0, 56, 147, 0.37) 0%, transparent);
  height: 2px;
  border-radius: 60px;
}

.aboutus-contentimg img {
  height: 100%;
  border-radius: 5px;
  max-height: 500px;
}
.contact-container .contact-infos .eachcontact-info {
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.contact-container .contact-infos .eachcontact-info:first-child {
  padding-top: 0;
}
.contact-container .contact-infos .eachcontact-info:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.contact-container .contact-infos .eachcontact-info .eachcontact-content span {
  color: #444;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin: 8px 0 10px 0;
}
.contact-container .contact-infos .eachcontact-info .eachcontact-content p,
.contact-container .contact-infos .eachcontact-info .eachcontact-content p a {
  color: var(--primary--color);
  font-size: 17px;
  font-weight: 500;
}
.contact-container .contact-infos .eachcontact-info .socialmedia ul {
  list-style: none;
  display: flex;
  margin-top: 5px;
}
.contact-container .contact-infos .eachcontact-info .socialmedia ul li i {
  color: var(--primary--color);
  font-size: 20px;
}
.contact-container
  .contact-infos
  .eachcontact-info
  .socialmedia
  ul
  li:not(:first-child) {
  padding-left: 20px;
}
.contact-container
  .contact-infos
  .eachcontact-info
  .socialmedia
  ul
  li:not(:last-child) {
  padding-right: 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.contact-container .contact-infos .eachcontact-info img {
  width: 38px;
  object-fit: contain;
}
.contact-container .contact-forms {
  padding: 35px;
  border-radius: 5px;
  -webkit-box-shadow: -5px 4px 21px -22px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -5px 4px 21px -22px rgba(0, 0, 0, 0.75);
  box-shadow: -2px 4px 21px -15px rgba(0, 0, 0, 0.75);
}
.eachcontact-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-container .contact-forms h4 {
  color: var(--dark-primarry--color);
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 650;
}
.contact-container .contact-forms .wpcf7-form p:not(:last-child) {
  margin-bottom: 15px;
}
.contact-container .contact-forms .wpcf7-form input,
.contact-container .contact-forms .wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  outline: none;
  background-color: #fff;
  border: 1px solid #eee;
  font-family: var(--secondary-font);
  color: #111;
  font-weight: 600;
  margin-top: 3px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.contact-container .contact-forms .wpcf7-form input[type="submit"] {
  background-color: var(--primary--color);
  border: none;
  width: fit-content;
  border-radius: 3px;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 650;
  color: #fff;
  cursor: pointer;
}
.contact-container .contact-forms .wpcf7-form textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 150px;
}
.contact-container .contact-forms .wpcf7-form label {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.eachservice-content.mid p {
  padding: 20px;
}
.eachservice-content.mid .readmore {
  padding: 10px 20px;
}
.eachservice-content p {
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.eachservice-content .readmore {
  padding: 10px 30px;
}
.eachservice-content .readmore a {
  color: var(--primary--color);
  font-weight: 600;
}
.eachservices-section {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.eachservices-section .eachservices-img {
  position: relative;
  display: block;
  height: 300px;
}
.eachservices-section .eachservices-img img {
  height: 100%;
}
.eachservices-section .eachservices-img .eachservice-overlay {
  position: absolute;
  padding: 15px 35px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #000, transparent);
}
.eachservices-section .eachservices-img .eachservice-overlay h3 {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
}
.eachservices-section .eachservices-img .eachservice-overlay img {
  width: 64px;
  margin-bottom: 10px;
}

.the-content p,
.the-content {
  color: #111;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 20px;
}

.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h5,
.the-content h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 32px;
  color: var(--primary--color);
  opacity: 1;
}

.the-content h1 {
  font-size: 40px;
  line-height: 50px;
}

.the-content h2 {
  margin-top: 15px;
  font-size: 28px;
  line-height: 40px;
}

.the-content h1 strong,
.the-content h2 strong,
.the-content h3 strong,
.the-content h4 strong,
.the-content h5 strong,
.the-content h6 strong {
  font-weight: 600;
}

.the-content h3 {
  margin-top: 5px;
  font-size: 24px;
}

.the-content h4 {
  font-size: 22px;
}

.the-content ul,
.the-content ol {
  list-style: inherit;
}

.the-content ol,
.the-content ul {
  padding: 0 0 10px 13px;
}

.the-content ol li,
.the-content ul li {
  line-height: 26px;
  margin-bottom: 8px;
  list-style: inherit;
}

.showonmobile {
  display: none;
}
.bannersection .navbtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  color: #fff;
  font-size: 26px;
}
.bannersection .navbtn.prev-nav {
  left: 15px;
}
.bannersection .navbtn.next-nav {
  right: 15px;
}

.eachmedia img {
  height: 300px;
}
.eachevent-container {
  border-radius: 8px;
  overflow: hidden;
}
.eachevent-container .zoom-container img {
  height: 250px;
}
.eachevent-container {
  background-color: #f6f6f6;
}
.eachevent-content {
  padding: 15px 20px;
}
.eachevent-content h3 a {
  font-family: var(--primary-font);
  font-size: 26px;
  font-weight: 550;
  color: var(--primary--color);
}
.eachevent-content ul {
  list-style: none;
  padding-top: 15px;
  padding-bottom: 10px;
}
.eachevent-content ul li span {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
}
.eachevent-content ul li p {
  color: var(--primary--color);
  font-size: 16px;
  font-weight: 550;
  font-family: var(--secondary-font);
}
/* .eachevent-content > p{
  font-size: 15px;
  font-weight: 500;
  color: #454545;
} */
.eachevent-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.readmore {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding: 10px 15px;
  text-align: left;
}
.eventsingle-section .the-content {
  margin-top: 20px;
}
.event-single-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.event-single-meta .each-meta i {
  color: var(--dark-primarry--color);
}
.event-single-meta .each-meta p {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 550;
}

.event-single-meta .each-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footerheader p {
  margin-bottom: 6px;
}
.footer__btn {
  padding: 12px 17px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.9);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px 0 rgba(31, 38, 135, 0.342);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 3px;
  display: inline-block;
}

.footer__btn span {
  font-weight: bold;
  font-size: 14px;
  padding: 0;
}

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

.default--banner__section .img-bg img {
  width: 100%;
  max-height: 750px;
  object-fit: cover;
}

.default--banner__section {
  position: relative;
}

.banner--text {
  display: flex;
  align-items: center;
  height: auto;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding-bottom: 45px;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  display: grid;
  grid-gap: 1.5em;
  margin: 0;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  margin: 0;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* services page  */
.common__banner {
  position: relative;
}
.common__banner .page__banner__text {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  z-index: 1;
}
.page__banner__text h2 {
  margin: 0;
}
.page__banner__heading {
  font-size: 70px;
  line-height: 80px;
  color: white;
}
.services__page__section .services-container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style-type: none;
}
/* services page  */

/* gallery page  */
.gallery-section.gallery__single__page {
  background: white;
}
.gallery-icon.landscape img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.gallery-item img {
  width: 100%;
  height: 250px;
}

/* gallery page  */

.site-menuimg {
  display: none;
}
.mobile__menu {
  display: none;
}

.uk-modal-full .uk-modal-dialog {
  border: 10px solid var(--primary--color);
}

#modal-full img {
  width: 100%;
}

.ticketing-content {
  height: 100vh;
}
.ticketing-content h1 {
  margin-bottom: 10px;
}
.ticketing-content ul {
  margin-left: 20px;
}
.ticketing-content h3 {
  margin: 10px 0;
}
.ticketing-content ul li {
  font-family: var(--secondary-font);
}

.error-404 {
  position: relative;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding-top: 213px;
  text-align: center;
}
.error-404 .error-watermark {
  position: absolute;
  top: calc(50% - 170px);
  left: 0;
  display: block;
  width: 100%;
  font-size: 320px;
  line-height: 1;
  color: #1a1a1a0f;
  pointer-events: none;
}
.error-404 .error-title {
  margin: 0;
  color: #043357;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 43px;
  word-wrap: break-word;
}
.error-404 .error-text {
  display: block;
  font-weight: 500;
  margin: 23px auto 5px;
}

.media__center > a {
  display: block;
  width: 100%;
  height: 250px;
}

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

.media__content {
  padding: 15px;
  border: 1px solid #eee;
  height: 100%;
}

.media__content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.media__content h3 a:hover {
  color: var(--primary--color);
}

.media__content span {
  margin-top: 12px;
  font-size: 14px;
  display: block;
  font-weight: bold;
}

.single__blog .single__blog__content h1 {
  font-weight: bold;
  font-size: 40px;
  text-transform: uppercase;
}
.single__blog .single__blog__content .single__blog__img {
  margin: 20px 0;
}
.single__blog .single__blog__content .metainfo {
  margin: 10px 0;
  padding: 16px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  justify-content: space-between;
}
.single__blog .single__blog__content .metainfo,
.single__blog .single__blog__content .metainfo .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single__blog .single__blog__content .metainfo .wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  gap: 5px;
  justify-content: center;
}
.single__blog .single__blog__content .metainfo .wrapper p {
  font-weight: 500;
}
.single__blog .single__blog__content .metainfo .wrapper i,
.single__blog .single__blog__content .metainfo .wrapper p {
  color: #454545;
  font-size: 14px;
}

.page-content__area p,
.page-content__area {
  font-size: 17px;
  font-weight: 500;
  color: #2e2e2e;
}

.page-content__area p {
  margin-bottom: 24px;
}

.page-content__area figure {
  margin-bottom: 24px !important;
}

.page-content__area h1,
.page-content__area h2,
.page-content__area h3,
.page-content__area h4,
.page-content__area h5,
.page-content__area h6 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 32px;
  color: #0d0d0d;
  opacity: 1;
}

.page-content__area h1 {
  font-size: 40px;
  line-height: 50px;
}

.page-content__area h2 {
  margin-top: 32px;
  font-size: 28px;
  line-height: 40px;
}

.page-content__area h3 {
  margin-top: 32px;
  font-size: 24px;
}

.page-content__area h4 {
  font-size: 20px;
}

.page-content__area figure img {
  margin-bottom: 2px;
}

.page-content__area figcaption {
  font-size: 14px;
  line-height: 24px;
  color: #4a4a4a;
  opacity: 1;
  font-weight: 400;
  text-align: left;
  margin-top: 8px !important;
}
.sticky__class {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
}
.single__blog .single__blog__sidebar .recent__blog h2 {
  font-size: 30px;
  font-weight: 500;
}
.single__blog .single__blog__sidebar .recent__blog ul li:first-child {
  margin-top: 20px;
}
.single__blog .single__blog__sidebar .recent__blog ul li {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.single__blog .single__blog__sidebar .recent__blog .recent__img img {
  height: 100px;
  width: 100%;
}
.single__blog .single__blog__sidebar .recent__blog .recentblog__content h3 {
  color: #1e1e1e;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.single__blog
  .single__blog__sidebar
  .recent__blog
  .recentblog__content
  h3:hover {
  color: var(--secondary);
}

.media__content p {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}
