﻿/* Copyright © 2000-2020, VALKYRIE 360™ All Rights Reserved World Wide */

/* IMPORT FONTS */
@font-face { font-family: "ValkyrieFont"; src: url(../fonts/MICROGME/MICROGME.TTF) format("truetype"); }
@font-face { font-family: "OpenSans-Regular"; src: url(../fonts/OpenSans/OpenSans-Regular.ttf) format("truetype"); }
@font-face { font-family: "OpenSans-Bold"; src: url(../fonts/OpenSans/OpenSans-Bold.ttf) format("truetype"); }
@font-face { font-family: "OpenSans-ExtraBold"; src: url(../fonts/OpenSans/OpenSans-ExtraBold.ttf) format("truetype"); }

html, body {
    float: left;
    width:100%;
    overflow-x: hidden;
}
html {
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    font-family: 'OpenSans-Regular', sans-serif;
    font-size: 14px;
    color: #8A9597;
    background-color: #373B3C;
    background-attachment: fixed;
    /* background-image: url("../media/bg.jpg"); */
    background-position: bottom center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-width: 360px; 
    margin: 0;
}

.main-logo {
  position: absolute;
  top: 0;
  left: 10px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background: #373B3C;
}
::-webkit-scrollbar-track { 
    background: #373B3C;
}
::-webkit-scrollbar-thumb {
    border: 2px solid #313536;
    background: #313536; 
}
::-webkit-scrollbar-thumb:window-inactive {
	border: 2px solid #373B3C; 
    background: #373B3C;
}

/* Main Container */
.main-container {
    position: relative;
    /*min-height: 100vh;*/
    bottom: 0;
}
.content-wrap {
    padding-bottom: 0px;
    /*padding-bottom: 124px;*/
    margin: 0;
}

/* Footer */
footer {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;   
    width: 100%;
    height: 120px;
    overflow: hidden;
    background-color: #FFFFFF;
    border-top: 4px solid #D7DBDB;
}
footer p {
    padding: 20px;
    margin: 0;
    font-size: 11px;
}

/* Fonts */
.ValkyrieFont {
    font-family: "ValkyrieFont", Verdana, Tahoma;
    letter-spacing: 2px;
}
.highlight-01 {
    color: #5E6262;
}
.highlight-02 {
    color: #737576;
}
.highlight-03 {
    color: #739407;
}

/* Links */
a, a:hover, a:visited, a:link, a:active {
    color: #739407;
    text-decoration: none;
}
/* Titles */

h1, h2, h3, h4, h5, h6 {
  font-family: "ValkyrieFont", Verdana, Tahoma;
  font-weight: 300;
  color: #8A9597;
  text-transform: uppercase;
}

/* Sections */
section {
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}

/* Logo */
#home .logo {
    color: #8A9597;
    font-size: 20px;
    font-weight: 500;
}
/* Menu */
.menu {
  position: fixed;
  right: -200px;
  width: 260px;
  height: 100%;
  top: 0;
  z-index: 2000;
  text-align: left;
}

.menu.menu-open {
  right: 0px;
}

.menu-wrap {
  position: absolute;
  top: 0;
  left: 60px;
  background: #4B4E4F;
  width: 200px;
  height: 100%;
}

.menu-logo {
  position: absolute;
  top: 10px;
  left: 20px;
}
/*
.menu h1.menu-logo a, a:hover, a:visited, a:link, a:active {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 40px;
  text-transform: uppercase;
  margin-top: 20px;
}

.menu a {
  margin-left: 20px;
  color: #FFFFFF;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu a:hover {
  color: #8A9597;
}

.menu a:active {
  color: #FFFFFF;
}

.menu a>i {
  float: left;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  width: 25px;
  font-size: 14px;
  line-height: 40px;
  margin: 25px 2px;
}
*/
.menu-close {
  cursor: pointer;
  display: block;
  position: absolute;
  font-size: 14px;
  color: #8A9597;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 20px;
  right: 5px;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -ms-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.menu-close:hover {
  color: #8A9597;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -ms-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.menu-notice {
    font-size: 9px;
}

.menu-footer-logo-text {
    font-size: 12px;
    font-weight: 700;
}

.menu-footer-logo-mark {
    font-size: 12px;
    font-weight: 500;
}

/* Push the body after clicking the menu button */
.body-push {
  overflow-x: hidden;
  position: relative;
  left: 0;
}

.body-push-toright {
  left: 200px;
}

.body-push-toleft {
  left: -200px;
}

.menu, .body-push {
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

/* Menu Toggle */
#menuToggle {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 11;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #8A9597;
  width: 40px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  background: rgba(138, 149, 151, 0.25);
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -ms-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

#menuToggle:hover {
  color: #739407;
  background: rgba(138, 149, 151, 0.2);
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -ms-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

/* Menu Content */
.menu-content {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 50px;
  color: #8A9597;
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.1em;
}

/* Carousel */
.carousel {
    z-index: 1000;
}
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px;
}
.carousel-indicators {
    cursor: pointer;
}
.carousel-indicators .active {
    background-color: #739407;
}
.carousel-indicators li {
    background-color: #8A9597;
}
.carousel-item {
    height: 25vh;
    min-height: 300px;
}
.carousel-item i {
    font-size: 40px;
}
.carousel-inner-quote {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 200px;
}
.carousel-inner-quote .carousel-item {
    height: 15vh;
    min-height: 200px;
}
.carousel-highlight {
    color: #373B3C;
}

/* Responsive Carousel */
@media (max-width: 1200px) {

}

@media (min-width: 992px) {

}

@media (min-width: 768px) and (max-width: 980px) {
    .carousel-caption h5 {
    font-size: 16px;
    }
}

@media (max-width: 767px) {
    .carousel-caption h5 {
    font-size: 14px;
    }
}

@media (max-width: 480px) {
    .carousel-caption h3 {
    font-size: 22px;
    }
    .carousel-caption h5 {
    font-size: 12px;
    }
}

/* Hexagon */
.hexagon {
    position: relative;
    display: inline-block;
    width: 260px;
    height: 260px;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    /* border style */
    /* theme */
}
.hexagon .hexagon-shape {
    position: relative;
    overflow: hidden;
    display: block;
    width: 240px;
    height: 208px;
    -webkit-transform: rotate(-30deg) skewX(30deg) scale(1.0);
    -moz-transform: rotate(-30deg) skewX(30deg) scale(1.0);
    -ms-transform: rotate(-30deg) skewX(30deg) scale(1.0);
    -o-transform: rotate(-30deg) skewX(30deg) scale(1.0);
    transform: rotate(-30deg) skewX(30deg) scale(1.0);
    border-radius: 18px;
    margin-left: auto;
    margin-right: auto;
}
.hexagon .hexagon-shape *,
.hexagon .hexagon-shape *:before {
    display: block;
    overflow: hidden;
    width: inherit;
    height: inherit;
    border-radius: inherit;
}
.hexagon .hexagon-shape .hexagon-shape-inner {
    -webkit-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    -moz-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    -ms-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    -o-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    opacity: 1;
}
.hexagon .hexagon-shape:first-child .hexagon-shape-inner:before,
.hexagon .hexagon-shape .hexagon-shape-inner-2 {
    -webkit-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    -moz-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    -ms-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    -o-transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    transform: skewX(-30deg) rotate(60deg) skewX(30deg);
    background: #313536;
    content: '';
}
.hexagon .hexagon-content {
    position: absolute;
    top: 36px;
    width: 100%;
    text-align: center;
    line-height: 1.5;
}
.hexagon .hexagon-content h4 {
    font-size: 14px;
    padding-top: 32px;
    -webkit-font-smoothing: antialiased;
}
.hexagon .hexagon-content span {
    position: relative;
    font-size: 12px;
    line-height: 8px;
    top: -12px;
    -webkit-font-smoothing: antialiased;
}
.hexagon .hexagon-content .content-sub {
    font-size: 11px;
    padding-top: 4px;
    padding-left: 36px;
    padding-right: 36px;
    color: #8A9597;
}
.hexagon.hexagon-with-border .hexagon-shape.content-panel {
    -webkit-transform: rotate(-30deg) skewX(30deg) scale(0.96);
    -moz-transform: rotate(-30deg) skewX(30deg) scale(0.96);
    -ms-transform: rotate(-30deg) skewX(30deg) scale(0.96);
    -o-transform: rotate(-30deg) skewX(30deg) scale(0.96);
    transform: rotate(-30deg) skewX(30deg) scale(0.96);
    position: relative;
    top: -208px;
}
.hexagon.hexagon-with-border .hexagon-shape.content-panel:first-child .hexagon-shape-inner:before,
.hexagon.hexagon-with-border .hexagon-shape.content-panel .hexagon-shape-inner-2 {
    background: none;
}
.hexagon.info .hexagon-shape:first-child .hexagon-shape-inner:before,
.hexagon.info .hexagon-shape-inner-2 {
    background: #4B4E4F;
}

.hexagon.info .hexagon-shape.content-panel:first-child .hexagon-shape-inner:before,
.hexagon.info .hexagon-shape.content-panel .hexagon-shape-inner-2 {
    background: #313536;
}
.hexagon.info .content-title {
    color: #739407;
}
.hexagon-content .content-icon {
    font-size: 36px;
}
.hexagon-footer-heading {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden;
    padding: 4px 0 4px;
	position: relative;
    background-color: #8A9597;
    border-radius: 10px;
    border: 4px solid #8A9597;
}

@-webkit-keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Menu Images */
.menu-img {
    -webkit-filter: grayscale(100%) opacity(.2); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%) opacity(.5);
    cursor: pointer;
}
.menu-img:hover {
	-webkit-filter: grayscale(0%) opacity(1); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%) opacity(1);
    cursor: pointer;
}

/* Menu Buttons */
.menu-button { 
    position: relative;
    display: block;
    float: left;
	overflow: hidden;
	outline: none;
	border: 0;
	text-decoration: none;
	cursor: pointer;
    font-size: 12px;
    padding: 10px;
    margin:10px 0 20px 0;
    color: #739407;
    background: #373B3C;
    text-transform:uppercase;
    font-weight: 700;
    width: 100%;
    text-align: center;

    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    
    transition: all 0.3s linear;
    -webkit-transition:all 0.3s linear;
    -moz-transition:all 0.3s linear;
    -ms-transition:all 0.3s linear;
    -o-transition:all 0.3s linear;
}
.menu-button:hover {
	color: #373B3C !important;
    background-color: #739407;
}

/* Responsive Menu Button */
@media (max-width: 1200px) {

    .menu-button {
    width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 980px) {

    .menu-button {
    width: 100%;
    }

}

@media (max-width: 767px) {
    .menu-button {
    width: 100%;
    }
}

@media (max-width: 480px) {
    .menu-button {
    width: 100%;
    }
}

/* Statement */
.statement {
    text-align: center;
    margin-top: 20px;
    font-weight: 700;
}
.sub-statement-01 {
    text-align: center;
    font-size: 12px;
}
.sub-statement-02 {
    text-align: center;
    margin-top: 20px;
    font-size: 10px;
    font-weight: 700;
}