/*
Theme Name: childrens_haven
Theme URI: https://wordpress.org/themes/twentyseventeen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: childrens_haven
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentyseventeen
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/

ul {
  padding: 0;
}

@font-face {
  font-family: MouseMemoirs-Regular;
  src: url(fonts/MouseMemoirs-Regular.ttf);
}

@font-face {
  font-family: Roboto-Regular;
  src: url(fonts/Roboto-Regular.ttf);
}


body {
  font-family: MouseMemoirs-Regular;
}

.uppercase {
  text-transform: uppercase;
}

h2.entry-title {
  display: none;
}


img {
  max-width: 100%;
}

.col-centered {
  display: inline-block;
  text-align: center;
}

.col-right {
  display: inline-block;
  text-align: right;
}

.col-left {
  display: inline-block;
  text-align: left;
}

.mynavbar {
  text-align: center;
  ;
}

.mynavbar .nav {
  float: none;
}

.mynavbar .nav li {
  display: inline-block;
  float: none;
  vertical-align: middle;
}

.mynavbar .nav li a {
  color: black;
  font-size: 24px;
}

.mynavbar .nav li.mylogo a,
.mynavbar .nav li.mylogo a:hover {
  background: transparent;
  max-width: 150px;
}

.mynavbar .nav li.mylogo a img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

.navbar-brand {
  display: none
}

/* Underline From Center */

.mynavbar .nav li a {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.mynavbar .nav li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: black;
  height: 4px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.mynavbar .nav li a:hover:before,
.mynavbar .nav li a:focus:before,
.mynavbar .nav li a:active:before {
  left: 0;
  right: 0;
}

@media screen and (max-width:768px) {
  .navbar-brand {
    display: inline
  }
  .mynavbar .nav li {
    display: block;
    margin: 0
  }
  .mynavbar .nav li a {
    border-radius: 0;
    display: block;
    border-bottom: 1px solid #fff
  }
  .mynavbar li.mylogo {
    display: none
  }
}

.navbar {
  border-radius: 0 !important;
  background: transparent;
  border: none;
}

/* logo-nav */

.logo-nav {
  padding: 1% 3%;
  background-image: url(img/nav-back.png);
  background-size: cover;
  background-position: right;
}

.logo-nav img {
  width: 20%;
}

/* Slide */

.slide {
  height: 72vh;
  overflow: hidden;
}

/* Footer */

footer {
  padding: 5% 3%;
  background-image: url(img/footer-back.jpg);
  background-size: cover;
  background-position: center center;
}

footer li {
  list-style: none;
  margin: 2% 0;
  font-size: 2rem;
}

footer li span {
  font-weight: bold;
  margin-right: 1%;
}

footer ul.social li {
  display: inline-block;
  margin: 0 1%;
}

@-webkit-keyframes flash {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}

@keyframes flash {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}

.flash:hover {
  opacity: 1;
  -webkit-animation: flash 1s;
  animation: flash 1s;
}

@keyframes fa-blink {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.75;
  }
  100% {
    opacity: 0;
  }
}

.fa-blink {
  -webkit-animation: fa-blink 1.75s linear infinite;
  -moz-animation: fa-blink 1.75s linear infinite;
  -ms-animation: fa-blink 1.75s linear infinite;
  -o-animation: fa-blink 1.75s linear infinite;
  animation: fa-blink 1.75s linear infinite;
}

.fa-heart {
  color: red;
}

.copyright {
  font-size: 18px;
  letter-spacing: 5px;
}
.footer-logo img {
    width: auto;
}
h1.entry-title {
    text-align: center;
	color: #282828;
}
h3{
	line-height: 1.5;
}
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
 }