/*!
Theme Name: nagarkot-zip-coasters
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
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: nagarkot-zip-coasters
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

nagarkot-zip-coasters is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

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

@font-face {
	font-family: 'ALT Systema regular';
	src: url('./assets/fonts/ALTSystema-Regular.woff2') format('woff2'),
		url('./assets/fonts/ALTSystema-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ALT Systema bold';
	src: url('./assets/fonts/ALTSystema-Bold.woff2') format('woff2'),
		url('./assets/fonts/ALTSystema-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ALT Systema semi-bold';
	src: url('./assets/fonts/ALTSystema-Semibold.woff2') format('woff2'),
		url('./assets/fonts/ALTSystema-Semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

:root {
	--primary: #FF6B01;
	--secondary: #000;
	--font-regular: "ALT Systema regular";
	--font-bold: 'ALT Systema bold';
	--font-semibold: 'ALT Systema semi-bold';

}

a:hover {
	text-decoration: none;
}

body {
	font-family: var(--secondary-font);
}

.section {
	padding-top: 80px;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	border-bottom: 1px solid #fff;
}

.site-header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #eee;
	padding: 10px;
	transition: 0.5s ease-out;

}

.site-header.sticky .custom-logo {
	filter: none;
	width: 130px;
}

.site-header.sticky .header-flex {
	align-items: center;
}

.site-header {
	position: absolute;
	z-index: 1000;
	padding: 40px 0;
	width: 100%;
}

.site-header .custom-logo {
	filter: brightness(0) invert(1);
	width: 200px;
}

.header-flex {
	display: flex;
	justify-content: space-between;

}

.btn {
	background: #FF6B01;
	color: #fff;
	padding: 8px 20px;
	font-family: var(--font-semibold);
	display: inline-block;
	transition: all 0.3s linear;
	border-radius: 45px;
	font-size: 16px;
	font-weight: 400;

}

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

.btn:hover {
	background: var(--secondary);
	color: #fff;
}

.ham-menu>a {
	background: var(--primary);
	border-radius: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ham-menu svg {
	width: 20px;
}

.ham-menu>a:hover {
	background: var(--secondary);
}

.offcanvas{
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	z-index: 1000;
	background: #fff;
	transform: translateX(0);
	overflow: auto;
	transition: all 0.5s ease-in-out;
	
}
.offcanvas.show{
	transform: translateX(-100%);
	width: 100%;
	
	
}
.offcanvas-wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	
}
.offcanvas-wrap > div{
	width: 100%;
}

.offcanvas-close{
	font-size: 25px;
	color: #fff;
	top:0;
	right:0;
	margin: 10px;
    padding: 6px 12px;
	cursor: pointer; ;
	position: absolute;
	background: var(--primary);
	border-radius: 10px;
	
}
.offcanvas-close:hover{
	background: var(--secondary);
}
.offcanvas-logo{
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid #eee ;
	margin-bottom: 20px;
	
}
.offcanvas-logo img{
	width: 150px;	
}

.offcanvas-menu .menu {
	text-decoration: none;
	list-style: none;

}
.offcanvas-menu .menu a {
    text-decoration: none;
    list-style: none;
    padding: 15px 30px;
	display: block;
	color:var(--primary);
	font-size: 25px;
    font-family: var(--font-semibold);
	
}
.offcanvas-menu .menu a:hover{
	color: var(--secondary);
}


.offcanvas-background img{
	height: 100vh;
	width: 100%;
	max-width: 1000px;
	object-fit: cover;	
}

.offcanvas-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.has-sub-menu {
	position: relative;
}

.offcanvas-details{
	margin-top: 20px;
}

.offcanvas-details .offcanvas-contact{
	color: #000;
	font-family: var(--font-semibold);
	font-size: 18px;
	
}
.offcanvas-details > div{
	margin-bottom: 30px;
}
.offcanvas-details img{
	width: 20px;
}
.offcanvas-contact a{
	color: #000;
	font-family: var(--font-semibold);
	font-size: 18px;
}
.offcanvas-contact span{
	color: var(--primary);
}
.offcanvas-contact{
	margin: 0;

}
.offcanvas-details p{
	font-weight: 600;
	margin: 0 0 10px;
}
.mob-sub-menu {
	display: none;
	background: #dfe2f3;
}

.banner__section {
	position: relative;
	color: #fff;
	height: 100vh;
}

.banner_img {
	height: 100vh;
}

.banner_img img {
	position: relative;
	width: 100%;
	object-fit: cover;
	height: 100vh;
}

.banner__text {
	position: absolute;
	z-index: 1;
	width: 100%;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0 20px;
	max-width: 750px;
	margin-bottom: 50px;
}

.banner__heading {
	font-family: var(--font-bold);
	font-weight: 700;
	font-size: 65px;
	line-height: 60px;
	text-align: center;
	letter-spacing: -0.03em;
	color: #fff;
	margin-bottom: 20px;
}

.banner__btn .btn {
	margin: auto;
	display: block;
	width: max-content;
}

.heading-wrap {
	margin-bottom: 20px !important;
}

.heading-wrap h2 {
	font-family: var(--font-semibold);
	color: rgba(0, 0, 0, 0.7);
	font-weight: 600;
	font-size: 35px;
	line-height: 35px;
	margin-bottom: 0;
}

.heading-wrap span {
	font-family: var(--font-semibold);
	color: var(--primary);

}

.heading-wrap.white h2 {
	color: #fff;
}

.explore-section {
	position: relative;
	overflow: hidden;
}



.explore-container .heading-wrap h2 {
	font-size: 42px;
	line-height: 48px;
}

.heading-wrap p {
	font-size: 18px;
	font-family: var(--font-regular);
	color: rgba(0, 0, 0, 0.7);
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 0;
}

.explore-section::after {
	content: "";
	background-image: url(./assets/img/explore_bg.png);
	right: 0;
	top: 5px;
	width: 100%;
	max-width: 1000px;
	height: 700px;
	position: absolute;
	background-size: 1000px;
	background-repeat: no-repeat;
	opacity: .8;
	pointer-events: none;
}

.gallery-heading {
	font-family: var(--font-bold);
	font-weight: 700;
	font-size: 65px;
	line-height: 70px;
	text-align: center;
	color: rgba(0, 0, 0, 0.7);
	margin-bottom: 30px;
}

.gallery-heading span {
	color: var(--primary);
}
.gallery__img{
	overflow: hidden;
	display: block;
}
.gallery__img img{
	transition: 0.3s ease-out;
}
.gallery-slider img {
	aspect-ratio: 1/1;
	height: 100%;
	width: 100%;
	object-fit: cover;
	width: 100%;
}
.gallery__img img:hover{
	transform: scale(1.2);
}


.gallery-slider {
	position: relative;
	margin-top: 44px;
}

.gallery-slider .owl-nav {
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	justify-content: space-between;
	width: 100%;
	cursor: pointer;
	height: 0;
}

.gallery-slider .owl-nav button span {
	margin: 10px;
	font-size: 30px;
	color: #fff;
	display: block;
	background: var(--primary);
	width: 50px;
	height: 50px;
	border-radius: 5px;
}

.feature-container {
	margin-top: 30px;
	z-index: 1;
	position: relative;
	
}
.feature-img{
	overflow: hidden;
	display: block;
}

.feature-img img {
	width: 100%;
	transition: 0.3s ease-out;
}
.feature-img img:hover{
	transform: scale(1.1);
}


.feature-section .heading-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.feature-section .wrapping {
	max-width: 800px;
	flex: 1;
}

.feature-section {
	position: relative;
}

.feature-section::after {
	content: "";
	background-image: url(./assets/img/feature-bg.png);
	background-position: top left;
	left: 0;
	top: 0;
	width: 100%;
	max-width: 1000px;
	height: 700px;
	;
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;
}

.cta-container {
	background: url(./assets/img/ad-bg-img.png) center/cover no-repeat;
	padding: 30px;
	position: relative;

}

.cta-container .wrapping {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	z-index: 1;
	position: relative;
	align-items: center;
}

.cta-container .heading-wrap.white {
	max-width: 360px;
	margin-bottom: 0 !important;

}

.cta-container::before {
	content: "";
	background: #FF6B01E5;
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.media-logo {
	text-align: center;
	margin-bottom: 30px;
	font-family: var(--font-semibold);
}

.media-section {
	position: relative;

}

.media-section::after {
	content: "";
	background-image: url(./assets/img/explore_bg.png);
	background-position: top right;
	right: 0;
	top: 0;
	width: 100%;
	max-width: 1000px;
	height: 700px;

	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	pointer-events: none;

}

.media-section>div {
	position: relative;
	z-index: 1;
}

.media-img {
	overflow: hidden;
	display: block;
	width: 100%;
}

.media-img img {
	transition: 0.3s ease-out;
		height: 100%;
	width: 100%;
}

.media-img img:hover {
	transform: scale(1.2);

}


.location-section {
	position: relative;
	margin-top: 60px;
	overflow: hidden;
}

.location_img img {
	width: 100%;
	height: 700px;
	object-fit: cover;
}

.location-container {
	position: absolute;
	z-index: 1;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;

}

.location-container>div,
.location-details {
	height: 100%;

}

.location-details {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 60px;
	margin-left: 40px;
}

.location-details h2 {
	text-align: left;
	max-width: 380px;
}

.location-details .wraping {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.location-wrap {
	font-family: var(--font-bold);
	font-size: 60px;
	text-align: right;
	color: #fff;
	line-height: 40px;
}

.location-wrap p {
	margin: 0;
	font-size: 13px;
	color: #fff;
}

.footer-left {
	padding: 40px;
}

.footer__logo .custom-logo {
	width: 250px;
	margin-bottom: 80px;
}

.social-icons {
	margin-top: 40px;
}

.social-icons a {
	color: #000;
	margin-right: 10px;
	font-size: 20px;

}

.footer-right {
	padding: 40px 0 0 40px;
	background: #EEEEEE;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer-right::after {

	content: "";
	background-image: url(./assets/img/footer-bg.png);
	background-position: right;
	right: 0;
	top: 0;
	width: 100%;
	max-width: 1000px;
	height: 100%;
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;


}

.footer-right>div {
	position: relative;
	z-index: 1;
}

.footer-right p {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: rgba(0, 0, 0, 0.3);

}

.footer-wrap img {
	color: var(--primary);
	height: 35px;
	width: 20px;
}

.hour-wrap {
	display: flex;
}

.footer-time .heading-wrap {
	line-height: 50px;
}

.footer-contact a {
	display: block;
	font-family: var(--font-semibold);
	color: rgba(0, 0, 0, 0.7);
	font-weight: 600;
	font-size: 35px;
	line-height: 40px;
	margin-left: 30px;
}

.footer-contact span {
	color: var(--primary);
}

.footer-wrap h2 {
	margin: 0;
	margin-left: 30px;
}

.right-bar {
	margin-top: 100px;
	display: flex;
	gap: 30px;
	align-items: center;
}

.right-bar p {
	margin: 0;
	flex: 1;
	font-family: var(--font-semibold);
	color: rgba(0, 0, 0, 0.7);

}

.right-bar a {
	color: rgba(0, 0, 0);
}


.footer-btn img {
	filter: brightness(0) invert(1);
	height: 18px;

}

.footer-btn {
	background: var(--primary);
	text-align: center;
}

.footer-btn a {
	font-family: var(--font-semibold);
	color: #fff;
	padding: 25px;
	display: block;
}

.footer-btn:hover {
	background: #000;
}