/*

Tooplate 2113 Earth

https://www.tooplate.com/view/2113-earth

*/

@keyframes seq-preloader {
  50% {
    opacity: 1;
  }
  
  100% {
    opacity: 0;
  }
}

.seq-preloader {
  background: #000;
  visibility: visible;
  opacity: 1;
  position: absolute;
  z-index: 99999999;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sequence {
  background-color: #000;
}

.seq-preloader.seq-preloaded {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s .5s, opacity .5s;
}

.seq-preload-indicator {
  overflow: visible;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.seq-preload-circle {
  display: inline-block;
  height: 12px;
  width: 12px;
  fill: #7a7a7a;
  opacity: 0;
  animation: seq-preloader 1.25s infinite;
}

.seq-preload-circle-2 {
  animation-delay: .15s;
}

.seq-preload-circle-3 {
  animation-delay: .3s;
}

.seq-preload-indicator-fallback {
  width: 42px;
  overflow: visible;
}

.seq-preload-indicator-fallback .seq-preload-circle {
  width: 8px;
  height:8px;
  background-color: #f4f4f4;
  border-radius: 100%;
  opacity: 1;
  display: inline-block;
  vertical-align: middle;
}

.seq-preload-indicator-fallback .seq-preload-circle-2 {
  margin-left: 3px;
  margin-right: 3px;
  width: 12px;
  height: 12px;
}

.seq-preload-indicator-fallback .seq-preload-circle-3 {
  width: 16px;
  height: 16px;
}


/* MAIN CSS */

@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #fff;
  }
}
@keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #fff;
  }
}
@-webkit-keyframes fillColour {
  0% {
    color: #fff;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #333;
  }
}
@keyframes fillColour {
  0% {
    color: #fff;
  }
  50% {
    color: #fff;
  }
  100% {
    color: #333;
  }
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

html {
	overflow: hidden;
  background-color: #000;
}

body {
  overflow: hidden;
  font-size: 100%;
  background-color: #000;
}

nav {
	top: 15%;
  text-align: center;
  background: rgba(0, 0, 0, 0.75);
  position: fixed;
  z-index: 100;
  height: 90%;
  left: 0;
  width: 15%;
  font-weight: 300;
  font-size: 1rem;
}
nav .nav-icon {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin: 0 auto 2px;
  color: inherit;
}
nav em {
	font-style: normal;
	font-size: 13px;
	text-transform: uppercase;
	display: block;
	margin-top: 15px;
	color: #fff;
}

nav ul li a {
	text-align: center;
}

nav ul {
	position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	text-align: left;
	list-style-type: none;
	height: 70%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
	-ms-flex-pack: distribute;
  justify-content: space-around;
}
nav ul li {
	text-align: center;
	margin: 5px 0px;
}
nav a, nav a:visited, nav a:active {
  color: #fff;
}
nav a:hover,
nav a:focus-visible {
  color: #0c4e0f;
}
nav a:hover .nav-icon,
nav a:focus-visible .nav-icon {
  color: #0c4e0f;
}
nav a:hover em,
nav a:focus-visible em {
  color: #0c4e0f;
}
nav a {
  text-decoration: none!important;
  display: inline-block;
  width: 140px;
  padding: 15px 0px;
  position: relative;
  z-index: 0;
  transition: color 0.25s ease;
}
nav a.active {
  background-color: rgba(0,0,0,0.8);
}
nav a::before {
  content: "";
  position: absolute;
  height: 0%;
  width: 0%;
  bottom: 0;
  left: 0;
  opacity: 1;
  z-index: -1;
}
.logo {
	margin-top: 0px;
  top: 0;
  left: 0;
  z-index: 999999;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
	background-color: #0c4e0f;
	height: 15%;
	width: 15%;
}
.logo h1 {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  margin: 0;
  position: static;
  transform: none;
}
.logo-tagline {
  margin: 4px 0 0;
  padding: 0 4px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
}
.slides {
  width: 500vw;
  height: 100vh;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.slides .slide {
  height: 100vh;
  width: 100vw;
  float: left;
  text-align: center;
  background-size: cover;
}
.slides .slide .content {
  overflow-y: scroll;
  position: relative;
  width: 80%;
  height: 80%;
  left: 20%;
  top: 10%;
}
.content::-webkit-scrollbar {
  display: none!important;
  opacity: 0!important;
  visibility: hidden!important;
}
/* Add a thumb */
.content::-webkit-scrollbar-thumb {
  display: none!important;
  opacity: 0!important;
  visibility: hidden!important;
}
.slides .slide {
  background-position: center center;
  background-size: cover;
  background-position: fixed;
}
.slides .slide:nth-child(1) {
  background-color: #000;
}
.slides .slide:nth-child(2) {
  background-image: url(../images/about-bg.png);
  background-position: fixed;
}
.slides .slide:nth-child(3) {
  background-image: url(../images/gallery-bg.jpg);
  background-position: fixed;
}
.slides .slide:nth-child(4) {
  background-image: url(../images/contact-bg.png);
  background-position: fixed;
}

/* Slide 1 Stlye */
#slider-wrapper{
  max-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #000;
}
#image-slider {
  width: auto;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: auto;
  display: block;
  background-color: #000;
}
#image-slider ul {
  margin-bottom: 0;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #000;
}
#image-slider ul li {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height:100%;
  background-color: #000;
}
#image-slider ul li {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
#image-slider ul li:nth-child(1) {
  background-image: url(../images/full-bg-01.png);
}
#image-slider ul li:nth-child(2) {
  background-image: url(../images/full-bg-02.png);
}
#image-slider ul li:nth-child(3) {
  background-image: url(../images/full-bg-03.png);
}
#image-slider ul li.active-img{
  left: 0;
}
#thumbnail {
  position: absolute;
  z-index: 99999;
  bottom: 30px;
  right: 30px;
}
#thumbnail ul {
  padding: 0px;
  margin: 0px;
}
#thumbnail ul li {
  display: inline-block;
  max-width: 120px;
  max-height: 120px;
  margin-left: 30px;
  cursor: pointer;
  border: 4px solid transparent;
  transition: all 0.5s;
}
#thumbnail ul li.active {
  border: 5px solid #faf5b2;
}
#thumbnail ul li img {
  max-width: 100%;
  overflow: hidden;
}
.slide-caption {
  text-align: right;
  right: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slide-caption h6 {
  margin-top: 0px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 2px 14px rgba(0, 0, 0, 0.35);
}
.slide-caption h2 {
  margin-top: 0px;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 3px 18px rgba(0, 0, 0, 0.4);
}

@media (min-width: 992px) {
  .slide-caption h6 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 2px 16px rgba(0, 0, 0, 0.45);
  }
  .slide-caption h2 {
    text-shadow:
      0 1px 4px rgba(0, 0, 0, 0.75),
      0 4px 24px rgba(0, 0, 0, 0.5),
      0 0 48px rgba(0, 0, 0, 0.25);
  }
}




/* Slide 2 Style */
.second-content {
	top: 148%!important;
	transform: translateY(-148%);
}
#tabs {
  float: right;
  margin-right: 0px;
}
#tabs ul {
  margin: 0;
  padding: 0;
  float: left;
}
#tabs ul li {
  margin-top: 5px;
  margin-bottom: 25px;
  display: block;
  background-color: transparent;
}
#tabs ul li:last-child {
  margin-bottom: 0px;
}
#tabs ul li a {
  display: block;
  cursor: pointer;
  outline: 0;
  border: none;
  color: #6a6a6a;
  text-decoration: none;
  text-transform: uppercase;
}
#tabs ul li span {
  text-align: center; 
  background-color: rgba(12, 78, 15, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.85);
  color: #f5f2ea;
  width: 90px;
  height: 90px;
  font-size: 32px;
  line-height: 84px;
  border-radius: 50%;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
#tabs ul li a:hover span {
  background-color: rgba(12, 78, 15, 0.55);
  border-color: #fff;
  color: #fff;
}
#tabs ul .ui-tabs-active span {
  line-height: 90px;
  border-bottom: none;
}
#tabs ul li:nth-child(1).ui-tabs-active span {
  background: #4a3224;
  border-color: #6b4836;
  color: #f4e8d8;
}
#tabs ul li:nth-child(2).ui-tabs-active span {
  background: #0f5c32;
  border-color: #1a8f52;
  color: #e8fff0;
}
#tabs ul li:nth-child(3).ui-tabs-active span {
  background: #a85a18;
  border-color: #d97706;
  color: #fffaf3;
}
#tabs ul .ui-tabs-active a {
  color: #fff;
}
.tabs-content {
  margin-left: 60px;
  width: 585px;
  text-align: left;
  display: inline-block;
  background: #0c4e0f;
  margin-right: 30px;
  padding: 60px;
}
.tabs-content h2 {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  margin-top: 0px;
  line-height: 1.15;
}
.tabs-content span {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.tabs-content p {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 0px;
  line-height: 1.55;
}



/* Slide 3 Style */
.third-content {
	top: 120%!important;
	transform: translateY(-120%);
}
.third-slide a {
  text-decoration: none;
}
.featured-item {
  transition: all 0.5s;
  text-align: left;
}
.featured-item img {
  width: 100%;
}
.featured-item .down-content {
  background-color: #0c4e0f;
  border: none;
  padding: 18px 16px 20px;
  text-align: center;
}
.featured-item h4 {
  margin-top: 0px;
  margin-bottom: 8px;
  font-size: 17px;
  text-transform: none;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  transition: color 0.3s;
}
.featured-item .featured-caption {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}
.featured-item h6 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0px;
}
.third-content .owl-dots {
  text-align: center;
  margin-top: 30px;
}
.third-content .owl-dots .owl-dot {
  outline: none;
  display: inline-block;
}
.third-content .owl-dots .active span {
  background-color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.third-content .owl-dots .owl-dot span {
  background-color: rgba(12, 78, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.45);
  width: 12px;
  height: 12px;
  display: inline-block;
  margin: 0px 5px;
  outline: none;
  cursor: pointer;
}



/* Slide 4 Style */
.fourth-content {
	top: 140%!important;
  height: 100%;
	transform: translateY(-140%);
}
#contact {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
  margin-bottom: 100px;
  padding: 40px;
  background-color: rgba(0,0,0,0.9);
}
#contact h2 {
  font-size: 26px;
  text-transform: none;
  font-weight: 900;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 16px;
  line-height: 1.25;
}
#contact .contact-intro {
  margin: 0 auto 36px;
  max-width: 520px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
#contact .contact-line {
  margin: 0 0 26px;
  padding: 0;
}
#contact .contact-line:last-of-type {
  margin-bottom: 0;
}
#contact .contact-line a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.25s ease;
}
#contact .contact-line a:hover {
  color: #faf5b2;
}
#contact .contact-line .fa {
  font-size: 28px;
  width: 1.25em;
  text-align: center;
  flex-shrink: 0;
}
#contact .contact-text {
  text-align: left;
  word-break: break-word;
}
#contact .contact-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}
#contact .contact-footer-brand {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
#contact .contact-footer-tag {
  display: inline-block;
  margin-left: 8px;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  vertical-align: middle;
}
#contact .contact-footer-rights {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}


/* Responsive Style */
@media (max-width: 991px) {
  :root {
    --logo-strip-w: clamp(76px, 22vw, 110px);
  }

  .slides .slide .content {
	width: 100%;
	height: 90%;
	left: 0;
  }
  .second-content {
	top: 210%!important;
	transform: translateY(-210%);
  }
  .third-content {
	top: 140%!important;
	transform: translateY(-140%);
  }
  .fourth-content {
	top: 220%!important;
	transform: translateY(-220%);
  }
  .logo {
    width: var(--logo-strip-w);
    min-width: var(--logo-strip-w);
    height: 100px;
    min-height: 100px;
    background-color: #0c4e0f;
  }
  .logo h1 {
    display: block;
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: #fff;
  }
  .logo-tagline {
    font-size: 9px;
    margin-top: 6px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.9);
  }
  nav {
    top: 0vh;
    height: 100px;
    width: calc(100vw - var(--logo-strip-w));
    margin-left: var(--logo-strip-w);
  }
  nav ul {
    flex-direction: row;
  }
  nav ul li {
    display: inline;
    margin: 0px;
  }
  nav ul li .nav-icon {
    font-size: 22px;
    margin-bottom: 0;
  }
  nav ul li em {
    display: none;
  }
  nav a {
  	text-align: center;
	  width: 60px;
	  height: 60px;
    line-height: 30px;
    display: inline-block;
  }
  .second-slide {
    top: 140px;
  }
  .slide-caption h2 {
  	font-size: 48px;
  }
  .tabs-content {
    width: auto;
    text-align: center;
    margin: 0px 30px;
    padding: 20px;
  }
  .tabs-content p {
    margin-top: 20px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
  }
  .tabs-content span {
    font-size: 17px;
    font-weight: 700;
  }
  #tabs ul li {
    display: inline-block;
    margin: 0px 10px;
  }
  #tabs ul {
    float: none;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  #thumbnail ul li {
    max-width: 80px;
    max-height: 80px;
    margin-left: 10px;
  }
  .slide-caption {
    padding-left: 30px;
  }
  #tabs ul li span {
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 54px;
  }
  #tabs ul .ui-tabs-active span {
    line-height: 60px;
  }
  .featured-item {
    padding: 30px 15px;
  }
  .third-content .owl-dots {
    margin-top: 10px;
    padding-bottom: 30px;
  }
  .tabs-content h2 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
  }
  .third-slide {
    text-align: center;
    margin: 0px;
  }
  .fourth-slide {
    margin-left: 0;
    top: 0;
    transform: translateY(0%);
    margin-top: 140px;
  }
  #contact {
    padding: 28px 22px 36px;
    margin-bottom: 60px;
  }
  #contact h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  #contact .contact-intro {
    font-size: 15px;
    margin-bottom: 28px;
    padding: 0 4px;
  }
  #contact .contact-line a {
    font-size: 17px;
    flex-wrap: wrap;
  }
  #contact .contact-line .fa {
    font-size: 24px;
  }
  #contact .contact-footer {
    margin-top: 28px;
    padding-top: 20px;
  }
  #contact .contact-footer-brand {
    font-size: 16px;
  }
  #contact .contact-footer-rights {
    font-size: 12px;
  }

}