@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  overflow-x: hidden;
}

header {
  position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}
header .logo-container {
  background: transparent;
  box-shadow: none;
}

.hero {
  background: #FDF8EE url(../images/herobg.jpg);
  min-height: 1000px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
}

.header-text {
  display: flex;
  align-items: center;
  min-height: 750px;
}

.header-text h1 {
  color: #231F20;
  font-size: 78px;
  margin: 20px 0px;
}

.header-text p {
  font-size: 20px;
  padding: 10px 0px 25px 0px;
}

.header-img {
  position: absolute;
  bottom: 0;
  right: 0%;
  z-index: 1;
}

.header-img img {
  width: 90%;
}

@media only screen and (min-width: 992px) and (max-width: 1919px) {
  .hero,
  .homepage-two.homepage-three.header {
    min-height: 1400px;
  }

  .hero,
  .homepage-two.homepage-three.header {
    min-height: 956px;
  }

  .header-img {
    position: absolute;
    bottom: 5%;
    right: -28%;
    z-index: 1;
  }

  .header-img img {
    width: 65%;
  }
}


.games-filter {
  text-align: center;
  margin-bottom: 22px;
}

.games-filter button {
  background-color: #fff;
  color: #6b6b6b;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.games-filter button:hover {
  background-color: #FF9606;
  border-color: #FF9606 !important;
  color: #fff !important;
}

.games-grid .game-card {
  margin-bottom: 10px;
}

.games-grid .game-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.games-grid .game-card img:hover {
  transform: scale(1.1);
}

.games-grid .game-card span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
}

.btn-primary:hover {
  background: #0092B8;
  border: 1px solid transparent;
  transition: .5s;
}

.kids-active-btn {
  background: #EB6025;
  padding: 15px 60px;
  color: #fff;
  border-radius: 50px;
  font-size: 20px;
  border: 1px solid transparent;
  font-weight: 500;
}

span.title-span {
  color: #EB6025;
  font-size: 22px;
  letter-spacing: 10px;
  font-weight: 600;
}

.color-span {
  color: #EB6025;
  font-family: 'Abril Fatface', cursive;
}

/* ==========================
    Header Bottom Style Start
============================*/
.cards {
  background: #FDF8EE;
  margin-top: -100px;
}

.cards .header-box-single {
  padding: 80px 10px 180px 40px;
  border-radius: 15px;
  cursor: pointer;
  color: #fff;
  min-height: 450px;
}

.cards .header-box-single h4 {
  color: #fff;
  font-size: 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.cards .header-box-single p {
  color: #fff;
  font-size: 16px;
  padding: 15px 0px 25px 0px;
}

.cards .box-text {
  position: absolute;
  top: 15%;
  left: 10%;
  transition: .5s;
}

.cards .header-box-single:hover .box-text {
  top: 50%;
  transition: .5s;
  transform: translateY(-50%);

}

/* ===========Single Box Effect Area {Box-One} */
.cards .header-box-single.box-one {
  background: url('../images/baby-01.png') no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.cards .header-box-single.box-one::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url('../images/gradient-01.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 80%;
  border-radius: 0px 15px 0px 0px;
  z-index: -1;
  transition: .5s ease-in-out;
}

.cards .header-box-single.box-one::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: url('../images/box-cloud-01.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 30%;
  border-radius: 15px;
  z-index: -1;
  transition: .5s ease-in-out;
}

.cards .header-box-single.box-one:hover::before {
  height: 100%;
  opacity: 1;
  transition: .5s ease-in-out;
}

.cards .header-box-single.box-one:hover::after {
  height: 100%;
  opacity: 0;
  transition: .5s ease-in-out;
}

/* ===========Single Box Effect Area {Box-Two} */
.cards .header-box-single.box-two {
  background: url('../images/baby-02.png') no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.cards .header-box-single.box-two::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url('../images/gradient-02.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 80%;
  border-radius: 0px 15px 0px 0px;
  z-index: -1;
  transition: .5s ease-in-out;
}

.cards .header-box-single.box-two::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: url('../images/box-cloud-02.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 30%;
  border-radius: 15px;
  z-index: -1;
  transition: .5s ease-in-out;
}

.cards .header-box-single.box-two:hover::before {
  height: 100%;
  opacity: 1;
  transition: .5s ease-in-out;
}

.cards .header-box-single.box-two:hover::after {
  height: 100%;
  opacity: 0;
  transition: .5s ease-in-out;
}

/* ===========Single Box Effect Area {Box-Two} */
.cards .header-box-single.box-three {
  background: url('../images/baby-03.png') no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.cards .header-box-single.box-three::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url('../images/gradient-03.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 80%;
  border-radius: 0px 15px 0px 0px;
  z-index: -1;
  transition: .5s ease-in-out;
}

.cards .header-box-single.box-three::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: url('../images/box-cloud-03.png');
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 30%;
  border-radius: 15px;
  z-index: -1;
  transition: .5s ease-in-out;
}

.cards .header-box-single.box-three:hover::before {
  height: 100%;
  opacity: 1;
  transition: .5s ease-in-out;
}

.cards .header-box-single.box-three:hover::after {
  height: 100%;
  opacity: 0;
  transition: .5s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Abril Fatface", cursive;
  text-transform: unset;
}

section {
  padding: 120px 0px;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: 60px;
  color: #231F20;
}

.section-title p {
  font-size: 16px;
  color: #6b6b6b;
}

.about {
  position: relative;
}

.about-text {
  padding: 80px 0px 0px 80px;
}

.about-text h4 {
  font-size: 41px;
}

.about-img {
  position: relative;
  cursor: pointer;
}

.about-cloud-img-one {
  position: absolute;
  top: 0px;
  left: 0px;
  transition: all 0.5s ease-in-out 0s;
}

.about-cloud-img-two {
  position: absolute;
  right: 0px;
  top: 30%;
  transition: all 0.5s ease-in-out 0s;
}

.about-img:hover .about-cloud-img-one {
  top: 30%;
  transition: all 0.5s ease-in-out 0s;
}

.about-img:hover .about-cloud-img-two {
  top: 60%;
  right: 15%;
  transition: all 0.5s ease-in-out 0s;
}

.about-main-cloud-one {
  position: absolute;
  top: 15%;
  right: 2%;
}

.about-main-cloud-two {
  position: absolute;
  bottom: 15%;
  left: 2%;
}

.about-main-shape-one {
  position: absolute;
  top: 25%;
  left: 2%;
}

.about-main-shape-two {
  position: absolute;
  bottom: 25%;
  right: 2%;
}

.about-img .about-main-img {
  position: relative;
}

.about-img .about-main-img::after {
  content: "\f04b";
  font-family: "Font Awesome 5 Free";
  position: absolute;
}

.about-img .about-main-img img {
  width: 100%;
}

.cloud {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 1;
  width: 100%;
}

.cloud img {
  width: 100%;
}

.animation img,
.animation-two img {
  width: 150px;
}

.animation {
  position: absolute;
  bottom: 5%;
  left: 10%;
  animation: betterfly 5s infinite;
}

.animation-two {
  position: absolute;
  bottom: 22%;
  right: 0%;
  animation: betterfly-two 5s infinite;
}

@keyframes betterfly {
  10% {
    bottom: 7%;
  }

  15% {
    bottom: 8%;
  }

  20% {
    bottom: 9%;
  }

  30% {
    bottom: 10%;
  }

  35% {
    bottom: 11%;
  }

  40% {
    bottom: 13%;
  }

  45% {
    bottom: 15%;
  }

  50% {
    bottom: 17%;
  }

  55% {
    bottom: 18%;
  }

  60% {
    bottom: 20%;
  }

  65% {
    bottom: 22%;
  }
}

@keyframes betterfly-two {
  60% {
    bottom: 7%;
  }

  55% {
    bottom: 8%;
  }

  50% {
    bottom: 9%;
  }

  45% {
    bottom: 10%;
  }

  40% {
    bottom: 11%;
  }

  35% {
    bottom: 13%;
  }

  30% {
    bottom: 15%;
  }

  25% {
    bottom: 17%;
  }

  20% {
    bottom: 18%;
  }

  15% {
    bottom: 20%;
  }

  10% {
    bottom: 22%;
  }
}

.games {
  background: #FDF8EE;
  position: relative;
}

.games .section-title h2 {
  width: 60%;
  margin: 0px auto;
  color: #EB6025;
}

.games .section-title p {
  margin-top: 15px;
}

.games-social {
  background: #EB6025;
  width: 270px;
  margin: 0px auto;
  padding: 15px 0px;
  border-radius: 15px;
  transition: .5s ease-in-out;
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
}

.games-shape {
  position: absolute;
  top: 10%;
  left: 2%;
}

.games-shape-one {
  position: absolute;
  top: 20%;
  right: 5%;
}

.games-shape-two {
  position: absolute;
  bottom: 20%;
  left: 5%;
}

.games-shape-three {
  position: absolute;
  bottom: 15%;
  right: 5%;
}
/* footer {
  background: #043947;
}
.copyrights {
  background: #043947;
}
header .top-strip {
  background: #043947;
} */
.offcanvas h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
}