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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans: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');

@import url('https://fonts.googleapis.com/css2?family=Hanuman:wght@100;300;400;700;900&family=Noto+Sans: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');


@font-face {
	font-family: 'GI';
	src: url('../fonts/gi-bold-web.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'GI';
	src: url('../fonts/gi-regular-web.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}


html,
body {
  font-family: 'Hanuman', sans-serif;
  background-color: white;
  color: black;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}


.image {
  width: 100%;
  height: auto;
  /* background-size: cover; */
    
}

.body-image {
	width: 100%;
	height:auto;
}

figcaption {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 5px;
}

.bottom-caption {
	margin: 0.5% 2% 5%;
}

@media screen and (max-width: 575px) {
  figcaption {
    font-size: 1rem;
  }
}

a {
  color: black;
  text-decoration: underline;
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
  text-decoration: underline;
}

a:hover {
  color: #b7b6b7;
  outline: 0;
  pointer-events: auto;
}

p {
  font-size: 1em;
  line-height: 1.5;

}

@media screen and (max-width: 575px) {
  p {
    font-size: 1em;
    line-height: 1.5;
  }
}


h1 {
  font-size: 4em;
  font-family: 'Hanuman', sans-serif;
  line-height: 1.2;
  text-align: center;
  font-weight: 800;
  margin-top: 1em;
  padding: 0 10px;
}

@media screen and (max-width: 575px) {
  h2 {
    font-size: 3em;
    padding: 30px 0 10px;
  }
}

h4 {
  font-family: 'Hanuman', sans-serif;
  font-size: 2em;
  line-height: 1.5;
  text-align: center;
  padding: 30px 0 50px;
}

@media screen and (max-width: 575px) {
  h4 {
    font-size: 2em;
    line-height: 1.5;
    text-align: center;
    padding: 30px 0 50px;
  }
}

h5 {
  font-family: 'Hanuman', sans-serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  padding: 20px 0 20px;
}

@media screen and (max-width: 575px) {
  h5 {
    font-size: 2.2em;
    line-height: 1.5;
    padding: 50px 0 20px 0;
  }
}

hr {
  border: 0px;
  height: 1px;
}


section {
  width: 100%;
  height: auto;
  background-size: cover;  
  padding: 25px 0 35px;
}

.container {
  padding: 25px 0 35px;
}

@media screen and (max-width: 575px) {
  .container {
    padding: 0 20px 25px 30px;
  }
}

.parallax-container {
  height: 100vh;
  width: 100%;
}

pre {
  overflow: auto;
}

pre code {
  word-wrap: normal;
  white-space: pre;
}

footer {
  background: #000;
  color: #ddd;
  font-family: 'Hanuman', sans-serif;
  font-size: .75em;;
  padding: 3%;
  text-align: left;
  width: 100%;
  display: inline-flex;
  position: relative;
  z-index: 100;
}

footer a {
  color: #ddd;
}

footer a:hover {
  color: #eee;
  text-decoration: underline;
}

#footer-div1 {
  margin-left: 15%;
  margin-right: 20%;
}

@media screen and (max-width: 575px) {
  
  .image {
    transform-origin: 0 20px 0;
  }

  .footer {
    font-size: 1em;
    padding: 5%;
  }

  #footer-div1 {
    margin-left: 5%;
	margin-right: 5%;
	padding-right: 10px;
  }

  #footer-div2 {
    margin-left: 5%;
  }

  #foot {
    display: flex; /* Make the footer a flex container */
    flex-direction: column; /* Stack child elements vertically */
  }

  .col-3 {
    width: 100%; /* Set the width to 100% to make them full width */
  }

}

/* Layout
===========================*/
#header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 65px;
	padding: 0px 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: inline-flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: none;
	/* border-bottom: 0.5px solid rgb(105, 103, 103); */
	z-index: 1001;
}
#footer{
	position: relative;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 45px;
	padding: 0 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;	
	background-color: #fff;
	border-top: 0.5px solid rgb(15, 15, 15);
	color: #111;
	z-index: 999;
	-webkit-transform: translateZ(0);
	        transform: translateZ(0);
}
@media (max-width: 768px) {
	#footer {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	#footer small {
		display: none;
	}
	#header, #footer {
		padding: 0 20px;
	}
}

.sticky-header #header,
.fixed-header #header{
	position: fixed;
}
.sticky-header.sticky-footer #footer,
.fixed-header.fixed-footer #footer{
	position: fixed;
}
.sticky-header #main,
.fixed-header #main{
	padding-top: 65px;
}
.sticky-header.sticky-footer #main,
.fixed-header.fixed-footer #main{
	padding-bottom: 45px;
}
.hero-fullscreen{
	height: calc(100vh - 65px);
}
.sticky-header.sticky-footer .hero-fullscreen,
.fixed-header.fixed-footer .hero-fullscreen{
	height: calc(100vh - 65px - 45px);
}
.hero-min-fullscreen{
	min-height: calc(100vh - 65px);
}
.sticky-header.sticky-footer .hero-min-fullscreen,
.fixed-header.fixed-footer .hero-min-fullscreen{
	min-height: calc(100vh - 65px - 45px);
}
#main {
	min-height: 100vh;
}

#header, #footer{
	-webkit-transition: -webkit-transform .3s ease;
	transition: -webkit-transform .3s ease;
	transition: transform .3s ease;
	transition: transform .3s ease, -webkit-transform .3s ease;
}
.scrolling-down.sticky-header #header{
	-webkit-transform: translate3d(0, -100%, 0);
	        transform: translate3d(0, -100%, 0);
}
.scrolling-down.sticky-header.sticky-footer #footer{
	-webkit-transform: translate3d(0, 100%, 0);
	        transform: translate3d(0, 100%, 0);
}




/* Header
===========================*/
#header .logo {
	color: #fff;
	text-decoration: none;
}
#header .logo h1 {
	font-size: 19px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0;
}
#header .logo img {
	display: block;
	max-height: 40px;
}

@media (max-width: 768px) {
	#header .logo img {
		max-height: 30px;
	}

}

#header .logo .logo-dark,
.light-navigation #header .logo .logo-light {
	display: none;
}
.light-navigation #header .logo .logo-dark {
	display: block;
}

/* Navigation
===========================*/
.navigation{
	-ms-flex-item-align: stretch;
	    align-self: stretch;
	height: 100%;
}
.navigation > ul,
.navigation > ul > li,
.navigation > ul > li > a{
	height: 100%;
}
.navigation > ul > li > a{
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.navigation ul{
	list-style: none;
	margin-bottom: 0;
}
.navigation ul li{
	position: relative;
	display: inline-block;
	/* float: left; */
}
.navigation ul li a{
	display: block;
	color: #000;
	position: relative;
	padding: 1rem 1.2rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.navigation > ul > li > a:after{
	content: '';
	display: block;
	position: relative;
	height: 2px;
	width: 100%;
	background-color: currentColor;
	bottom: 0;
	left: 0;
	-webkit-transform-origin: right;
	        transform-origin: right;
	-webkit-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition: -webkit-transform 300ms ease;
	transition: -webkit-transform 300ms ease;
	transition: transform 300ms ease;
	transition: transform 300ms ease, -webkit-transform 300ms ease;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.navigation > ul > li:hover > a:after,
.navigation > ul > li > a.active:after{
	-webkit-transform-origin: left;
	        transform-origin: left;
	-webkit-transform: scaleX(1);
	        transform: scaleX(1);
}
/*submenu*/
.navigation > ul > li > ul{
	position: absolute;
	width: 200px;
	left: 0;
	background-color: #fff;
	border-top: 1px solid rgba(248, 244, 244);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
@media (min-width: 1025px) {
	.navigation li > ul {
		-webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .16);
		        box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .16);
	}
}
.navigation > ul > li:last-child > ul,
.navigation > ul > li:nth-last-child(2) > ul {
	left: auto;
	right: 0;
}
.navigation li:hover > ul{
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}
.navigation ul ul li{
	display: block;
	float: none;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.navigation ul ul li:last-child{
	border-bottom: 3px solid #fff;
}
.navigation ul ul a{
	color: black;
	padding: .8rem 1.8rem;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.navigation ul ul a:hover{
	color: #000;
	background-color: #fff;
	/*transform: translateX(5px);*/
	text-indent: 5px;
}
/*megamenu*/
.navigation li.has-mega-menu {
	position: inherit;
}
.navigation .mega-menu {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	padding: 30px 50px 30px;
	background-color: #fff;
	-webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.22);
	        box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.22);
	border-top: 1px solid rgba(255, 255, 255, .1);
	border-bottom: 5px solid #fff;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.navigation .mega-menu li:first-child {
	border-top: 1px solid rgba(255, 255, 255, .1);
}
.navigation .mega-menu li:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.navigation li:hover > .mega-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.navigation .mega-menu .col-title {
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 2rem;
}

/*new badge*/
.navigation a.new:after {
	content: 'NEW';
	display: inline-block;
	background-color: #f00;
	color: #fff;
	border-radius: 3px;
	margin-left: 12px;
	font-size: 11px;
	font-weight: bold;
	padding: 1px 4px;
	letter-spacing: 0;
	text-indent: 0;
}




/* Mobile Menu
===========================*/
.mob-menu {
	display: none;
	width: 26px;
	position: relative;
	z-index: 99999;
}
.mob-menu span {
	display: block;
	height: 2px;
	background-color: #111;
	float: right;
	margin-bottom: 3px;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;	
}
.mob-menu span:nth-child(1) {
	width: 80%;
}
.mob-menu span:nth-child(2) {
	width: 65%;
}
.mob-menu span:nth-child(3) {
	width: 100%;
}
.mob-menu:hover span {
	width: 100%;
}
.mob-menu.active span:nth-child(1) {
	width: 100%;
}
.mob-menu.active span:nth-child(2) {
	width: 54%;
	-webkit-transform: translate3d(-6px, 0, 0);
	        transform: translate3d(-6px, 0, 0);
}

/*Mobile menu*/
@media (max-width: 1024px) {
	#header .navigation {
		display: none;
	}
	#header .mob-menu {
		display: inline-block;
	}

	.navigation {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #fff;
		color: black;
		height: auto;
		max-height: 100vh;
		overflow-x: hidden;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.navigation ul li {
		display: block;
		float: none;
		text-align: left;
		border-bottom: 1px solid rgba(87, 84, 84, 0.1);
	}
	.navigation > ul > li > a {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		color: black !important;
		
	}
	.light-navigation .navigation {
		background-color: #efefef;
	}
	.light-navigation .navigation ul li {
		border-bottom: 1px solid rgba(0, 0, 0, .1);
	}
	.light-navigation .navigation > ul > li > a {
		color: rgba(0, 0, 0, .9) !important;
	}

	.navigation > ul > li > a:after {
		display: none !important;
	}
	/*submenu*/
	.navigation > ul > li > ul {
		display: none;
		position: relative;
		width: 100%;
		opacity: 1;
		visibility: visible;
		-webkit-transition: none;
		transition: none;
		background-color: #000;
		border-top: 2px solid #fff !important;
	}
	.light-navigation .navigation > ul > li > ul {
		border-top: 3px solid rgba(0, 0, 0, .1) !important;
	}
	.light-navigation .navigation ul ul li:last-child {
		border-bottom: 3px solid rgba(0, 0, 0, .1) !important;
	}
	.navigation ul ul a {
		text-align: center;
	}
	.navigation ul ul li:last-child {
		border-bottom-width: 2px;
	}
	/*megamenu*/
	.navigation .mega-menu {
		display: none;
		position: relative;
		background-color: #fff;
		border-bottom-width: 2px;
		opacity: 1;
		visibility: visible;
		-webkit-transition: none;
		transition: none;
	}
	.navigation .mega-menu .col {
		width: 100%;
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
		margin-bottom: 40px;
	}
	.navigation .mega-menu .col-title {
		text-align: center;
	}
}

@media (min-width: 1025px) {
	.navigation {
		display: block !important;
	}
	.navigation .mega-menu {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.navigation > ul > li > ul {
		display: block !important;
	}
}



/* Light Navigation
===========================*/
.light-navigation #header {
	background-color: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.light-navigation #header .logo {
	color: #000;
}
.light-navigation .mob-menu span {
	background-color: #000;
}
.light-navigation .navigation > ul > li > a {
	color: #000;
}
.light-navigation .navigation > ul > li > ul {
	border-top: 1px solid transparent;
}
.light-navigation .navigation ul ul,
.light-navigation .navigation .mega-menu {
	background-color: #f1f2f3;
}
.light-navigation .navigation .mega-menu {
	border-bottom: 5px solid rgba(0, 0, 0, .8);
}
.light-navigation .navigation .mega-menu .col-title {
	color: #000;
}
.light-navigation .navigation .mega-menu,
.light-navigation .navigation ul ul li:first-child {
	border-top: 1px solid rgba(0, 0, 0, .1);
}
.light-navigation .navigation .mega-menu li:last-child,
.light-navigation .navigation ul ul li {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.light-navigation .navigation ul ul li:last-child {
	border-bottom: 3px solid rgba(0, 0, 0, .8);
}
.light-navigation .navigation ul ul a {
	color: rgba(0, 0, 0, .8);
}
.light-navigation .navigation ul ul a:hover {
	color: rgba(0, 0, 0, 1);
	background-color: rgba(0, 0, 0, .07);
}

.light-navigation #footer {
	background-color: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.light-navigation #footer .text-links {
	color: #111;
}
.light-navigation #footer .text-links a:not(:first-child):before{
	color: #111;	
}



