
@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family:  'Muli',Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  color: #121212;
  background: #fff;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  a,
  button {
    cursor: default !important;
    border: none;
    outline: none;
  }
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  max-width: 80rem;
  width: 100%;
  height: auto;
  padding: 0 2rem;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .container {
    padding: 20px 0;
    margin: 0 auto;
    text-align:center;
  }
  
  .header .container {
      padding: 0;
  }
  
}

.container-feature {
    border-radius: 25px;
    background: #00330088;
    padding: 20px;
    width:40%;
    min-width:400px;
    display: block;
    color:#fff;
    line-height:30px;
    margin-top:20px
}

.brand {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: inherit;
  color: #fa9db7;
  border: none;
  outline: none;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

.header {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 1rem 0;
  margin: 0 auto;
  z-index: 999;
  border: none;
  outline: none;
  background: #0CA0FC;
  font-family: Nunito, sans-serif;
  color: #fff;
  font-weight:900;
      -webkit-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 30%);
  
          
}

.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
}

.header-item-center {
    margin-left:100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66%;
          flex: 0 0 66%;
}

.header-item-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-item-right .menu-icon {
  font-size: 1.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-left: 1rem;
  border: none;
  outline: none;
  color: #121212;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .menu > ul > li {
  display: inline-block;
  line-height: 3.125rem;
  margin-left: 1.5rem;
}

.header .menu > ul > li > a {
  position: relative;
  font-family: inherit;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  border: none;
  outline: none;
  color: #fff;
  font-family: Nunito, sans-serif;
  font-weight:900;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  border: none;
  outline: none;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  border-top: 3px solid #fa9db7;
  background: #fafafa;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header .menu > ul > li .menu-subs > ul > li {
  line-height: 1;
}

.header .menu > ul > li .menu-subs > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-column-1 {
  min-width: 16rem;
  max-width: 20rem;
}

.header .menu > ul > li .menu-subs.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
  display: block;
  line-height: 1;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0.5rem 0;
  border: none;
  outline: none;
  color: #121212;
    font-family: Nunito, sans-serif;
  font-weight:400;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 68rem;
  width: 100%;
  padding: 1.25rem 1rem;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  padding: 0 1rem;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #fa9db7;
  text-transform: uppercase;
  font-family: Nunito, sans-serif;
  font-weight:900;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
  text-align: center;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover {
  color: #fa9db7;
}

.header-item-right a:hover,
.header .menu > ul > li:hover > a {
  color: #fa9db7;
}

@media only screen and (min-width: 993px) {
  .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
  }
}

.menu-mobile-header,
.menu-mobile-trigger {
  display: none;
}

@media only screen and (max-width: 992px) {
  .header-item-center {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header-item-left, .header-item-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .menu-mobile-trigger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.75rem;
    height: 1rem;
    border: none;
    outline: none;
    margin-left: 1.25rem;
    background: none;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .header .menu-mobile-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #fff;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }
  .header .menu-mobile-trigger span:nth-child(1) {
    top: 0;
  }
  .header .menu-mobile-trigger span:nth-child(2), .header .menu-mobile-trigger span:nth-child(3) {
    top: 0.5rem;
  }
  .header .menu-mobile-trigger span:nth-child(4) {
    top: 1rem;
  }
  .header-item-right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
            margin-right: 20px;
  }
  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 20rem;
    height: 100%;
    z-index: 1099;
    overflow: hidden;
    background: #fafafa;
    -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
            transform: translate(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .header .menu.active {
    -webkit-transform: translate(0%);
        -ms-transform: translate(0%);
            transform: translate(0%);
  }
  .header .menu > ul > li {
    display: block;
    line-height: 1;
    margin: 0;
  }
  .header .menu > ul > li > a {
    display: block;
    line-height: 3.125rem;
    height: 3.125rem;
    padding: 0 3.125rem 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .menu > ul > li > a i.ion {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
    top: 0;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header .menu .menu-mobile-header {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 0;
   /* height: 3.125rem;*/
    z-index: 501;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(35,54,104,1)
  }
  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: #fff;
    font-family: nunito;
    font-weight:900;
    text-align: center;
  }
  .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
  }
  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: inherit;
    color: #fff;
    font-family:nunito;
    font-weight: 900;
    text-transform: capitalize;
    text-rendering: optimizeLegibility;
  }
  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: #ffffff;
    font-family: nunito;
    font-weight:900;
    text-align: center;
  }
  .header .menu .menu-section {
    height: 100%;
    background: rgba(35,54,104,1);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .menu > ul > li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .header .menu > ul > li .menu-subs.active {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
    margin-top: 0;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
    margin-bottom: 1.25rem;
  }
  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
    margin-bottom: 0rem;
  }
  .header .menu > ul > li .menu-subs > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
    margin-bottom: 1rem;
  }
  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: block;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.55);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.main {
  margin-top: 112px;
  display: block;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.fullWidthImageBackground {
    width: 100%;
    height:81px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    background-image: url("../images/footer_bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fullWidthBanner {
    width: 100%;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  height: 680px;
  background-image: url("/images/animalMathBanner_half.webp");
}

/* Phones only */
@media only screen and (max-width: 767px) {
  .fullWidthBanner {
    background-image: url("/images/animalMathBannerMobile.png");
    height: 680px; /* example shorter height for portrait */
  }
}


.pageBottom {
    width: 100%;
    height:81px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    background-image: url("../images/footer_bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer {
    display: block;
    width: 100%;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    background: #2D4073;
    padding: 30px auto 50px auto;
    color: white;
    font-weight: bold;
  }

.footer a { color:#fff;box-shadow: none;text-decoration: none;}
.footer a:hover { color:#fff;box-shadow: none;text-decoration: none;}
.footer a:visited { color:#fff;box-shadow: none;text-decoration: none;}

.footer .container {
  padding: 3rem 0 6rem 0;
  text-align: center
}

.footer .note {
    font-size: 0.8rem;
    display: block;
    padding: 10px;
    font-weight: normal;
}

.footerColumns :after {
  content: "";
  display: table;
  clear: both;
}

.footerColumn {
  float: left;
  width: 25%;
  padding-bottom:40px;
}

@media screen and (max-width: 600px) {
  .footerColumn {
    width: 100%;
  }
}


.socialLinks {
    display:block;
}

.socialLinks a {
    display: inline-block;
    padding: 20px 10px;
}

.footer .copyright {
    background: rgba(35,54,104,1);
    background-image: url("../images/footer_bg_3.jpg");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 300px;
    padding: 160px 0 0 0;
    text-align: center;
    clear:both;
}

h1 { font-family: 'Nunito',sans-serif;font-size: 52px;font-weight: 900;line-height:50px;}
h2 { font-family: 'Nunito',sans-serif;font-size: 48px;font-weight: 900;color:#12265a;margin:0 0 8px 0;line-height:50px;}
h3 { font-family: 'Nunito',sans-serif;font-size: 42px;font-weight: 900;color: #12265a; }
h4 { font-family: 'Nunito',sans-serif;font-size: 36px;font-weight: 900;}
h5 { font-family: 'Nunito',sans-serif;font-size: 30px;font-weight: 900;}

.mobile-menu-brand {margin-bottom:20px;}
.mobile-menu-brand > img { width:200px;}

.support {line-height:30px; margin: 20px 0 100px 0;}
.support h2 {margin: 40px 0 30px 0;}
.support p { margin: 0 0 20px 0;}
.support ol {list-style-type:decimal;padding:0 30px 0 30px;}    
.support ol >li {list-style-type:decimal;}
.support ul {list-style-type:disc;padding:0 30px 30px 30px;}
.support ul >li {list-style-type:disc;}


.blog-post_content {max-width: 60rem; width: 100%;margin-left: auto;margin-right: auto;}

.blog-post_content img {
        display: block;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    vertical-align: top;
    max-width: 100%;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.blog-post-img img {
    border-radius: 30px;
    height:300px;
}

.blog-post-list {
    border-radius: 25px;
  border: 8px solid #fa9db7;
  padding: 20px;
  margin-bottom:100px;
  border-style: dashed;
}

.blog-post-list h2 {
    line-height:50px;
}

.blog-post-list a {color:#12265a;}
.blog-post-list a:visited {color:#12265a;}
.blog-post-list a:hover {color:#fa9db7;}


.read-more a {font-family: 'Nunito',sans-serif;font-size: 30px;font-weight: 900;color:#12265a;}
.read-more a:visited {color:#12265a;}
.read-more a:hover {color:#fa9db7;}

.entry-content .edit-link{display:none}
#game_wrapper{margin:0;/*top: -40px;position: relative;*/}
#game_header_wrap {background-color: #233668;padding:20px 0 0 0;}
#game_header {padding:10px 20px;width:1170px;display:block;margin:10px auto;min-height:250px;}
#game_header_bottom{background-image:url(/themes/kids/images/home-3_blue-section-top.png);height:80px;}
#game_logo{width:256px;height:256px;float:left;margin:0 20px 10px 0;}
#game_wrapper h1 {color: #ffffff;font-size: 60px;display: block;clear: none;font-family:Nunito, sans-serif;font-weight:900;}
#appstores {margin:10px 0}
.game_appstore{font-size:12px;line-height:13px;margin-right:50px;display:inline-block;}
.game_appstore p {margin:6px 0 6px 0;color:#ffffff;}
.game_appstore a:link,.game_appstore a:hover,.game_appstore a:visited {text-decoration:none;color:#ffffff;}
#game_talk{font-family:arial;color:#ffffff;font-size:18px;display:block;text-align:center;margin:10px auto;}
#game_talk .quote{display:block;}
#game_talk .source{display:block;margin-left:100px;font-size:14px}
#game_talk h2 {color:#ffffff;}
#game_talk p{margin-bottom:20px;text-align:center;display:block;}
#game_wrapper h3{font-size:32px;font-weight:900;margin: 0;padding: 0;}
#game_description{font-size:18px;display:inline-block;flex:50%;text-align:left;vertical-align:top;margin:10px 20px 10px 20px;}
#game_description p{margin-bottom:20px;}
#game_features{font-size:18px;display:inline-block;flex:50%;text-align:left;vertical-align:top;margin:10px 10px 10px 20px;}
#game_features li{padding-bottom:10px;margin-left:0px;margin-bottom:10px;}
#gallery{font-family:georgia;color:#ffffff;font-size:4px;text-align:center;clear:both;margin:0 auto;display:block;width:100%; background-color:#88d4f2;}
#gallery a {display:inline-block;margin:10px;border:3px solid #fff;}
#gallery a:hover {border-color:#233668;}
#gallery a img {display:block;margin:0px}
#galleryAnchor {margin:0;clear:both;}
#videogallery {border-bottom:2px solid #996633;padding:5px;}
#videogallery iframe {display:inline-block;margin:20px;}
#gallery_bottom{background-image:url(/themes/kids/images/blue-botom_section.png);height:80px;}
#famigobadge{position:absolute;top:565px;left:590px;z-index:1;}
#coronabadge{position:absolute;top:510px;left:10px;z-index:1;}
#kindertown{position:absolute;top:570px;left:690px;z-index:1;}
#wrapperanchor {clear:both}
#game_sections {display:flex;clear:both;width:1070px; margin:20px auto;}


@media only screen and (max-width: 1070px) {
    #game_sections {width:auto; margin:0 20px;}
    #game_header {width:auto;}
}


@media only screen and (max-width: 775px) {
    #game_description { display:block;clear:both;}
    #game_features { display:block;}
    #game_sections {display:block; width:auto;}
    #game_header {width:auto;}
}

body ul.wgl-check {
    margin-bottom:20px;
}

body ul.wgl-check li:before {
    content: "\2714";
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 1em;
    color: #fff;
    background: #45b3df;
    margin: 5px 10px 5px 5px;
    padding: 2px 8px;
}

body ul.wgl-check li {
    color: #12265a;   
    font-family: 'Nunito',sans-serif;font-size: 1.2em;font-weight: 900;
    padding-left: 3em;
    text-indent: -2.2em;
    margin-bottom:10px;
}


