/*!
Theme Name: little village
Theme URI: http://underscores.me/
Author: Akel Alkubeh
Author URI: https://artimedia-pro.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: little-village
Tags: custom-background, custom-logo, custom-menu, featured-images, 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.

little village is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
  --red: #eb0043;
  --grey: #797b7d;
}
body {
  background-color: #030a12;
  color: #fff;
}
h1 {
  font-size: 1.8em;
}
.red-clr{
  color: var(--red);
}
h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
}

h5 {
  font-size: 1em;
}
.custom-logo{
  max-width: 120px;
}
.page-content, .entry-content, .entry-summary
 {
    margin: 1.5em 0 0;
}
#primary-menu li a {
  text-decoration: none;
  color:#fff;
  position: relative;
  overflow: hidden;
}

#primary-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--red);
  width: 0%;
  transition: width 0.3s ease;
}

#primary-menu li a:hover::after {
  width: 100%;
  animation: heartbeat116 1.5s ease-in-out 0.3s infinite;
}

@keyframes heartbeat116 {
  0%, 100% {
    width: 100%;
  }
  50% {
    width: 60%;
  }
}
.post, .page
 {
    margin: 0em;
}
#primary-menu li.active a{
  border-bottom: 1px solid var(--red);
}
/* Footer Menu  */
#footer-menu li a{
  color: #fff;
  padding: 0.5em;
  text-decoration: none;
}
.copyrightban{
  background-color: #272727;
}
/* Contact Form  */
.btn-submit{
    background-color: var(--red);
    color: #fff;
    width: 100%;
}
input.form-input {
  width: 100%;
}
.wpcf7-spinner{
  display: none;
}

@media (min-width: 320px) and (max-width: 767px) {
  .mobiletabs  button{
    margin-bottom: 0px !important;
  }
  .service-form .btn-submit{
    font-size: 10px;
    width: 100%;
    height: 100%;
  }
  
}
