
*/

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

a {
  color: #009961;
}

a:hover {
  color: #00cc81;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# 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 #009961;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -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);
  }
}

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

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

.back-to-top i:hover {
  background: #00b371;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
 
}

#header.header-scrolled, #header.header-inner-pages {
  background:white;
}

#header .logo {
  font-size: 28px;
  margin: 0px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

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

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

.sub-logo{
color:red;
font-size:65px; 
text-shadow: 3px 3px 3px rgba(0, 0, 0, .6);
}


@media (max-width: 992px) {
  #header {
    border: 0;
    padding: 15px 0;
  }
  .sub-logo{
    color:red;
    font-size:19px; 
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
    }
}

footer {
	text-align : center;
	padding: 3px;
	background-color:  #333;
	color: #FFF;
	height: 40px;
	font-size:18px;
}
/*--------------------------------------------------------------
# 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;
  margin: 0 12px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  font-size: 14px;
  padding: 25px 3px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #009961;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
}

.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;
  border-top: 2px solid #009961;
}

.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: #282828;
}

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

.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";
  }
}

/* Get Startet Button */
.get-started-btn {
  margin-left: 25px;
  background: #009961;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.get-started-btn:hover {
  background: #00b371;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 18px;
  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: #fff;
}

.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: #282828;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #009961;
  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(15, 15, 15, 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;
}

.toy-bg1{
  background-image: url("../img/FingerYellow2.png");
  height:100%;
  background-size:60%;
  background-repeat:no-repeat;
  background-position:right;
}

.toy-bg2{
  background-image: url("../img/Mint1.png");
  height:100%;
  background-size:40%;
  background-repeat:no-repeat;
  background-position:bottom center;
}

.toy-bg3{
  background-image: url("../img/Group2.png");
  height:80%;
  background-size:50%;
  background-repeat:no-repeat;
  background-position: center;
}

.toy-bg4{
  background-image: url("../img/FingerBlue.png");
  height:100%;
  background-size:50%;
  background-repeat:no-repeat;
  background-position: right;
}


h1{
  font-size:76px;
  font-family:Arial;
  line-height:76px;
  color:#29CFCF;

}


h2{
  font-size:64px;
  font-family:Arial;
  line-height:56px;
  color:#29CFCF;

}


h3{
  font-size:49px;
  font-family:Arial;
  line-height:56px;
  color:#29CFCF;

}

h4{
  font-size:36px;
  font-family:Arial;
  line-height:48px;
}

h5{
  font-style:italic;
  font-size:24px;
  font-family:'Times New Roman', Times, serif;
  color:#201717
}


.heading{
  padding:350px;
}

.toy-btn{
  border-radius:50px;
  background:#fa7408;
  padding:10px 25px;
  color:white;
}

.toy-frame h3{
  padding-top:0px;
}


.toy-btn:hover{
  color:white;
   background:#d66408;

}

.toy-frame{
  padding:1px 15px 65px;
}

.branch1{
  position:absolute;
  top:2073px;
  right:0px;
}

.branch2{
  position:absolute;
  top:1323px;
  left:0px;
}

.branch3{
  position:absolute;
  top:1280px;
  right:0px;
}


.branch4{
  position:absolute;
  top:2023px;
  left:0px;
}

.branch5{
  position:absolute;
  top:2548px;
  right:0px;
}

.branch6{
  position:absolute;
  top:2925px;
  left:0px;
}

.branch7{
  position:absolute;
  top:2925px;
  right:0px;
}


.video-frame{
  background-image: url("../img/frame.png");
  width:100%;
  background-size:cover;
}

.space45{
padding-top:45px;
}
/*--------------------------------------------------------------
--------------------------------------------------------------*/


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
}
.overlay img{
  position:absolute;
  left:0;top:0;
  width:100%;
  height:95%;
  object-fit:cover;
  pointer-events:none;
  z-index:2;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 90%;
    padding: 0px;
    height: 78%;
    text-align: center;
    overflow: hidden;
    margin: 45px;
}

.img-parallax {
  width: 100vmax;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  pointer-events: none
}

.bottom45{
  padding-bottom:45px;
}

@media (max-width: 990px) {
  .heading{
  padding:250px 20px;

}
  .carousel-item h1{
  font-size:76px;
  font-family:CartoonToy-Italic;
  line-height:76px;
  color:#4e6b07;
  background:white;
}

.bottom45{
  padding-bottom:15px;
}

.carousel-item p{
  background:white;
  padding:10px;
}

.toy-frame {
    padding: 20px 15px 65px;
}


.branch1, .branch2, .branch3, .branch4, .branch5, .branch6, .branch7 {
  display:none!important;
}

.embed-responsive {
    position: relative;
    display: block;
    width: 90%;
    padding: 0px;
    height: 78%;
    text-align: center;
    overflow: hidden;
    margin: 15px;
}

.toy-frame h3{
  padding-top:25px!important;
}

.space45{
  padding-top:0px;
  margin-top:-15px;
}

#header .logo {
    font-size: 24px;
    margin: 0px;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0px;
}


}

.myButton {
	box-shadow: 0px 1px 0px 0px #fff6af;
	background:linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
	background-color:#ffec64;
	border-radius:13px;
	border:1px solid #ffaa22;
	display:inline-block;
	cursor:pointer;
	color:#333333;
	font-family:Arial;
	font-size:19px;
	font-weight:bold;
	padding:13px 19px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffee66;
}
.myButton:hover {
	background:linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
	background-color:#ffab23;
}
.myButton:active {
	position:relative;
	top:1px;
}

        