/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #000;
  background: #fff;
}

a {
  outline: none;
  color: #A9D4B6;
}

a:hover {
  color: #2E583C;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

.container h3 span {
  color: #A9D4B6;
}

.pdesktop {
  padding-top: 80px;
}

@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
  .pdesktop {
    padding-top: 160px;
  }
}

@media (max-width: 575px) {
  .pdesktop {
    padding-top: 0;
  }
}

.rounded {
  border-radius: 25px !important;
}

code {
  color: #2E583C;
  background: #A9D4B6;
}

::selection {
  color: #2E583C;
  background: #A9D4B6;
}

.form-control {
  border: 1px solid #A9D4B6
}

.form-control:focus {
  color: #495057;
  border-color: #83A88F;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(169, 212, 182, 0.25);
}

.quote {
  display: flex;
  border-left: 5px solid #e2e2e2;
  padding-left: 20px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 25px;
  background: #A9D4B6;
  color: #2E583C;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #83A88F;
  color: #2E583C;
}

/*--------------------------------------------------------------
# Progress bar
--------------------------------------------------------------*/

.progress-container {
  width: 100%;
  height: 8px;
  background: #e2e2e2;
}

.progress-bar {
  height: 8px;
  background: #A9D4B6;
  width: 0%;
}

@media (max-width: 575px) {
  .progress-container {
    position: absolute;
    top: 61px;
    z-index: 999px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #A9D4B6;
  border-top-color: #efefef;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 18px;
  transition: all 0.5s;
  color: rgba(255, 255, 255, 0.6);
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: rgba(169, 212, 182, 0.5);
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #83A88F;
}

#topbar .contact-info i {
  color: #A9D4B6;
  padding-right: 4px;
}

#topbar .contact-info i.icofont-phone {
  margin-left: 15px;
}

#topbar .social-links a {
  color: rgba(169, 212, 182, 0.5);
  margin-left: 10px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #A9D4B6;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(52, 58, 64, 0.2);
  transition: all 0.5s;
  z-index: 997;
  top: 40px;
  /*padding: 20px 0;*/
}

#header.header-scrolled {
  top: 0;
  background: rgba(8, 17, 11, 1.0);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  /*text-transform: uppercase;*/
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #A9D4B6;
}

#header .logo img {
  max-height: 37px;
}

/*#header .logo svg {
  fill: #fff;
}*/

/*#header.header-scrolled .logo img {
}*/

/*#header.header-scrolled .logo svg {
  fill: #A9D4B6;
}*/

@media (max-width: 992px) {
  #header {
    top: 0;
    padding: 10px 0;
    background: transparent;
  }
  #header .logo {
    font-size: 28px;
  }
  #header .logo svg {
    width: 100px;
  }
}

.header-inner-pages {
  background: rgba(8, 17, 11, 1.0) !important;
}

sub {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 0;
  vertical-align: bottom;
  text-transform: none;
  bottom: 22px;
  color: #A9D4B6;
}

@media (max-width: 575px) {
  sub {
    font-size: 11px;
    bottom: 14px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  /*padding: 18px 15px;*/
  /*margin-left: 5px;*/
  transition: 0.3s;
}

.nav-menu a {
  display: block;
  position: relative;
  padding: 27px 15px;
  transition: 0.3s;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li:hover, .nav-menu .active {
  color: #2E583C;
  background: #A9D4B6;
}

.nav-menu .active a {
  color: #2E583C;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #191919;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #A9D4B6;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-menu a {
	padding-left: 5px;
	padding-right: 5px;
    font-size: 13px;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .nav-menu a {
	padding-left: 10px;
	padding-right: 10px;
    font-size: 14px;
  }
}

@media (min-width: 1440px) and (max-width: 1600px) {
  .nav-menu a {
	padding-left: 10px;
	padding-right: 10px;
    font-size: 15px;
  }
}

@media (min-width: 1600px) and (max-width: 1800px) {
  .nav-menu a {
	padding-left: 10px;
	padding-right: 10px;
    font-size: 16px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 0px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #A9D4B6;
  padding: 5px;
  /*background-color: #A9D4B6;*/
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #191919;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #2E583C;
  background: #e2e2e2;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.nav {
 padding-left: 40px;
}

.nav-tabs {
  list-style: decimal;
  font-size: 22px;
  border: none;
}

.nav-tabs li::marker {
  color: #A9D4B6;
}

.nav-tabs, .nav-link.active {
  color: #A9D4B6 !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background: unset;
  border: unset;
}

.nav-tabs .nav-link, .nav-tabs .nav-link:hover {
  background: unset;
  border: unset;
  border-radius: unset;
}

.nav-link {
  padding: 20px;
}

.nav-tabs .nav-item {
  margin-bottom: 0;
}

.nav-tabs p {
  font-size: 15px;
  color: #444444;
  padding-left: 20px;
}

.hotspot .nav-tabs .nav-link {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../images/hero-bg.jpg") center;
  background-size: cover;
  position: relative;
}

/*#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}*/

/*#hero .container {
  padding-top: 0px;
}*/

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 51px;
  font-weight: 700;
  line-height: 56px;
  /*text-transform: uppercase;*/
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 20px;
  font-size: 33px;
}

#hero h3 {
  color: #eee;
  margin-bottom: 20px;
  font-size: 22px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  margin: 0 5px 10px 0;
  transition: 0.5s;
  border: 2px solid #A9D4B6;
  border-radius: 25px;
  background: #A9D4B6;
  color: #2E583C;
}

#hero .btn-get-started:hover {
  background: #83A88F;
  border-color: #83A88F;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
	height: 100% !important;
  }
  #hero .container {
    padding-top: 40px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 28px;
  }
  #hero h2 {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  #hero h3 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  #hero .btn-get-started {
    margin: 0 0 10px 0;
  }
}

/*--------------------------------------------------------------
# Sections Buttons
--------------------------------------------------------------*/
.btn-menu {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  margin: 0 0 0 10px;
  transition: 0.5s;
  border: 2px solid #A9D4B6;
  border-radius: 25px;
  background: #A9D4B6;
  color: #2E583C;
}

.btn-main {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  margin: 0 5px 10px 0;
  transition: 0.5s;
  border: 2px solid #A9D4B6;
  border-radius: 25px;
  background: #A9D4B6;
  color: #2E583C;
}

.btn-menu:hover, .btn-main:hover {
  background: #83A88F;
  border: 2px solid #83A88F;
  color: #2E583C;
}

@media (max-width: 480px) {
  .btn-menu {
    font-size: 11px;
    letter-spacing: 0px;
    padding: 5px 5px;
    margin: 0 30px 10px 5px;
  }
  /*.btn-menu span {
    display: none;
  }*/
  .btn-main {
    margin: 0 0 10px 0;
  }
}

@media (min-width: 992px) and (max-width: 1440px) {
  .btn-menu {
    font-size: 11px;
    padding: 5px 5px;
  }
}

@media (min-width: 1440px) and (max-width: 1600px) {
  .btn-menu {
    font-size: 12px;
    padding: 5px 5px;
  }
}

@media (min-width: 1600px) and (max-width: 1800px) {
  .btn-menu {
    font-size: 13px;
    padding: 10px 10px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

section h1 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #102316;
}

section p {
  font-size: 30px;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h1 {
  font-size: 51px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #A9D4B6;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #16291C;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-bottom {
  text-align: center;
  padding: 30px 0 0 0;
  position: relative;
}

.section-bottom h2 {
  font-size: 36px;
  font-weight: 700;
  padding-bottom: 0;
  margin-bottom: 0;
  color: #A9D4B6;
  position: relative;
  z-index: 2;
}

.section-bg {
  background: #e2e2e2;
}

@media (max-width: 768px) {
  section {
    padding: 20px 0;
  }
  section .btn-center {
    text-align: center;
	margin-top: 25px;
  }
}

@media (max-width: 575px) {
  .section-title {
    padding: 30px 0 15px 0;
  }
  .section-title h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .section-title span {
    font-size: 15px;
  }
  .section-bottom h2 {
    font-size: 22px;
  }
}

.text-muted a {
  color: #6c757d !important;
}

/*--------------------------------------------------------------
# Live
--------------------------------------------------------------*/

.live-index {
  width: 100%;
  height: 380px;
  /*border: 5px solid #A9D4B6;*/
}

.live-index iframe {
  width: 100%;
  height: 100%;
  border: 5px solid #A9D4B6;
  border-radius: 25px;
}

.live-inner {
  width: 100%;
  height: 640px;
  /*border: 5px solid #A9D4B6;*/
}

.live-inner iframe {
  width: 100%;
  height: 100%;
  border: 5px solid #A9D4B6;
  border-radius: 25px;
}

@media (max-width: 575px) {
  .live-index {
    height: 230px;
  }
}

/*--------------------------------------------------------------
# Start
--------------------------------------------------------------*/
.start {
  padding-top: 20px;
  background: #102316;
}

.start .box {
  padding: 20px 30px 10px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: rgba(169, 212, 182, 0.2);
  border-radius: 25px;
}

.start .box i {
  float: right;
  color: #A9D4B6;
  font-size: 96px;
}

.start .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #A9D4B6;
}

.start .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #A9D4B6;
}

.start .box p {
  color: #A9D4B6;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.start .box:hover {
  background: #A9D4B6;
  padding: 10px 30px 20px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.start .box:hover span, .start .box:hover h4, .start .box:hover p, .start .box:hover i {
  color: #2E583C;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: #e2e2e2;
}

.faq .section-title h1 {
  color: #102316;
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #102316;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  /*font-family: "Poppins", sans-serif;*/
  font-size: 30px;
  line-height: 24px;
  font-weight: 500;
  /*padding: 0 30px;*/
  outline: none;
}

.faq .faq-list .link {
  display: unset;
  font-size: inherit;
  font-weight: 400;
  padding: 0;
  outline: none;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #A9A454;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 20px 0 0 0;
  color: #A9D4B6;
  font-size: 22px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #A9D4B6;
}

.faq .faq-list a.collapsed:hover {
  color: #2E583C;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*.faq .more-btn {
  margin-left: 25px;
  background: #A9A454;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.faq .more-btn:hover {
  background: #556B2F;
}*/

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog h1 {
  margin-bottom: 0px;
}

.blog h1 a {
  font-weight: 700;
  color: #102316;
}

.blog h1 a:hover {
  color: #2E583C;
}

.blog span {
  font-size: 21px;
  font-style: italic;
}

.blog p a {
  color: #2E583C;
}

.blog p a:hover {
  color: #102316;
}

.blog .w-50 {
  width: 50% !important;
}

@media (max-width: 992px) {
  .blog .w-50 {
    width: 100% !important;
  }
}

.blog .img-thumbnail {
  width: 240px;
  height: 240px;
  border-radius: 25px;
  object-fit: cover;
  border: none;
  /*-webkit-filter: grayscale(100);
  filter: grayscale(100);*/
}

@media (max-width: 575px) {
  .blog h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .blog .img-thumbnail {
    width: 180px;
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #e2e2e2;
  margin-top: 121px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 61px;
  }
}

.breadcrumbs a {
  color: #2E583C;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 18px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #333333;
  content: "|";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #102316;
  padding: 0 0 0 0;
  color: #A9D4B6;
  font-size: 15px;
}

#footer .footer-top {
  padding: 60px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #08110B;
  color: #fff;
  border-top: 4px solid #A9D4B6;
  text-align: center;
  padding: 30px 20px 20px;
}

#footer .footer-top .footer-info h1 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  /*text-transform: uppercase;*/
}

#footer .footer-top .footer-info h1 span {
  color: #A9D4B6;
}

#footer .footer-top .footer-info h2 {
  font-size: 20px;
  margin: 0 0 5px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .footer-info a {
  color: #A9D4B6;
  letter-spacing: 1px;
}

#footer .footer-top .footer-info .social-links .bx {
  margin: 1px 0px 0px 3px;
}

#footer .footer-top .social-links a {
  font-size: 22px;
  display: inline-block;
  background: #A9D4B6;
  color: #fff;
  line-height: 1;
  padding: 6px 0 0 1px;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #fff;
  color: #A9D4B6;
  text-decoration: none;
}

#footer .footer-top .social-links a.social:before{
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  margin: auto;
  background-size: cover !important;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 6px;
}

/*#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #A9D4B6;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #A9D4B6;
}*/

#footer .footer-top .footer-links {
  text-align: center;
  /*border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
  padding: 15px 0;*/
}

#footer .footer-top .footer-links a {
  font-size: 15px;
  color: #A9D4B6;
  transition: 0.3s;
}

#footer .footer-top .footer-links a:hover {
  color: #fff;
}

#footer .footer-top .footer-notice {
  font-size: 15px;
  opacity: 0.25;
}

#footer .footer-top .footer-notice a {
  color: #fff;
  transition: 0.3s;
}

#footer .footer-top .footer-notice a:hover {
  color: #A9D4B6;
}

.footer-logo {
  padding: 20px 0;
}

.footer-logo a {
    margin-right: 40px;
}

#footer .copyright {
  text-align: center;
  padding: 15px 0;
}

#footer .credits {
  padding: 10px;
  text-align: center;
  font-size: 15px;
  color: #fff;
}

#footer .credits a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #fff;
}

#footer .container-fluid.bg {
  background: #08110B;
}

#footer .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 1200px) {
  #footer .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

/*--------------------------------------------------------------
# Play Button
--------------------------------------------------------------*/
.play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#19AE82 50%, rgba(239, 228, 212, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 70px);
  overflow: hidden;
}

.play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(239, 228, 212, 0.7);
  top: -14%;
  left: -14%;
  background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
  border-left: 15px solid #19AE82;
  transform: scale(20);
}

.play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media (max-width: 575px) {
  .play-btn {
    top: calc(50% - 70px);
  }
}

/*--------------------------------------------------------------
# Counter
--------------------------------------------------------------*/
.counts {
  background: #e2e2e2;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 25px;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  background: #102316;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
}

.counts .count-box span {
  font-size: 36px;
  /*display: block;*/
  font-weight: 600;
  color: #102316;
}

.counts .count-box span .ext {
  font-size: 36px;
  font-weight: 600;
  color: #102316;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner-desktop {
	visibility: visible;
	display: inline;
}

.banner-mobile {
	visibility: hidden;
	display: none;
}

@media (max-width: 992px) {
	.banner-desktop {
		visibility: hidden;
		display: none;
	}

	.banner-mobile {
		visibility: visible;
		display: inline;
	}
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/

.modal {
  top: 200px;
}

/*@media (max-width: 576px) {
  .modal {
    top: 50px;
  }
}*/

/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/

.cards .content h1 img {
  width: 40px;
}

.card-color {
  filter: invert(22%) sepia(0%) saturate(304%) hue-rotate(156deg) brightness(98%) contrast(81%);
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners {
  background: #e2e2e2;
  padding: 30px 0;
  text-align: center;
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
}

.partners a {
  color: #444444;
}

.partners a:hover {
  color: #102316;
}

.partners a span {
  color: #102316;
}

.partners a:hover span {
  color: #444444;
}

.partners .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.partners .owl-item img {
  width: 80%;
  opacity: 0.5;
  transition: 0.3s;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  margin: auto;
  display: inline;
  vertical-align: -moz-middle-with-baseline;
}

.partners .owl-item img:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

.partners .owl-nav, .partners .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.partners .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
  outline: none;
}

.partners .owl-dot.active {
  background-color: #102316 !important;
}

@media (max-width: 575px) {
  .partners {
    padding: 10px 0;
  }
  .partners .owl-item img {
    width: 100%;
  }
}

#partners img {
  width: 80%;
  opacity: 0.5;
  transition: 0.3s;
  -webkit-filter: grayscale(100);
  filter: grayscale(100);
  margin: auto;
  display: inline;
  vertical-align: -moz-middle-with-baseline;
}

#partners img:hover {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Grass Price
--------------------------------------------------------------*/

#grassLogo img {
  max-width: 20px;
  margin-top: -3px;
  filter: brightness(0) saturate(100%) invert(88%) sepia(19%) saturate(346%) hue-rotate(85deg) brightness(90%) contrast(91%);
}

/*.positive {
  color: #19AE82;
}*/

/*.negative {
  color: #A60000;
}*/

#grassChange.positive:before {
  content: "\ea6a";
  color: #A9D4B6;
  font-family: IcoFont;
  padding-left: 5px;
  padding-right: 2px;
}

#grassChange.negative:before {
  content: "\ea67";
  color: #A9D4B6;
  font-family: IcoFont;
  padding-left: 5px;
  padding-right: 2px;
}

/*--------------------------------------------------------------
# Crypto Chart
--------------------------------------------------------------*/

.exportBtnTop, .exportBtnFinal {
  color: #2E583C !important;
  background: #A9D4B6 !important;
}

.exportBtnTop:hover, .exportBtnFinal:hover {
  color: #A9D4B6 !important;
  background: #102316 !important;
}

.exportLightBox {
  border: 5px solid #102316 !important;
  background-image: none !important;
}

.cccCustomRadioContainer span {
  color: #2E583C;
}

.exportHeader span:before {
  content: "$GRASS Price Chart | ";
}

.exportHeader span {
  font-weight: bold;
  border-bottom: 2px solid #A9D4B6 !important;
}

.exportForm {
  color: #444444 !important;
  padding: 60px !important;
}

.tabperiods {
  color: #2E583C;
  background: #A9D4B6 !important;
}

.tabperiods:hover {
  color: #A9D4B6 !important;
  background: #102316 !important;
}

.tabperiods_active {
  color: #A9D4B6 !important;
  background: #102316 !important;
}

.tablinks {
  border: none !important;
  color: #2E583C;
  background: #A9D4B6 !important;
}

.tablinks.active {
  border: none !important;
  color: #A9D4B6 !important;
  background: #102316 !important;
}

.chartTypeTabLinks {
  color: #2E583C !important;
  background: #A9D4B6 !important;
}

.chartTypeTabLinks:hover {
  color: #A9D4B6 !important;
  background: #102316 !important;
}

.cTypeTabActive {
  color: #A9D4B6 !important;
  background: #102316 !important;
}

#chart button, #n1img button {
  color: #A9D4B6;
  background: #102316;
  font-size: 21px;
  padding: 0 5px;
  border: none;
  outline: none;
}

#chart button:hover, #n1img button:hover {
  color: #102316;
  background: #A9D4B6;
}