/*
 Theme Name:   kah
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         responsive, light, responsive-layout, accessibility-ready
 Text Domain:  kah
*/

*
{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root
{
    --main-accent: rgb(62 121 0);
}
::selection {
  color: white;
  background: var(--main-accent);
}
body,
input
{
    font-family: 'Raleway', sans-serif;
    font-size: 17px;

    color: #36393e;
}
input[type='email'],
input[type='text'],
input[type='submit']
{
    font-size: 17px;

    padding: 12px 25px;

    border: 1px solid rgb(62 121 0);
    border-radius: 0;
	font-family: inherit;
}

img
{
    max-width: 100%;
    height: auto;
}
p
{
    font-size: 17px;
    line-height: 24px;

    margin-bottom: 25px;
}
h1,
h2,
h3,
h4,
h5
{
    font-weight: 400;
}
h1,
h2
{
    font-size: 48px;

    margin-bottom: 34px;
}

h3
{
    font-size: 34px;

    margin-bottom: 20px;
}
h4
{
    font-size: 25px;
}
h5
{
    font-size: 20px;
}

h6
{
    font-size: 17px;
}
a:link,
a:visited
{
    text-decoration: none;

    color: inherit;
}
a:hover
{
    color: var(--main-accent);
}
footer
{
    text-align: center;

    color: white;
    background-color: black;
}
body > header
{
  position: relative;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;

    padding: 10px 60px 10px;

    -webkit-transition: background-color 300ms ease,padding 300ms ease, -webkit-transform 600ms ease;
         -o-transition: background-color 300ms ease,padding 300ms ease, transform 600ms ease;
            transition: background-color 300ms ease,padding 300ms ease, -webkit-transform 600ms ease;
            transition: background-color 300ms ease,padding 300ms ease, transform 600ms ease;
            transition: background-color 300ms ease,padding 300ms ease, transform 600ms ease,-webkit-transform 600ms ease;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);

    background-color: white;
}

body > main {
    min-height: calc(100vh - 240px);
}

header ul,
footer ul
{
    list-style-type: none;
}
main ul {
    list-style-position: inside;
}

.mobilemenu {
  display: none;
}

header .mainmenu a,
header .mobilemenu a,
footer .menu a
{
    font-size: 16px;
    line-height: 30px;

    display: block;

    padding: 5px 20px;
}
footer .menu
{
    margin-top: 73px;
    margin-bottom: 35px;
}
main li {
    font-size: 17px;
    line-height: 24px;
	margin-bottom:5px;
}
main .menu li {
    line-height: initial;
	margin-bottom:initial;
}
header .mainmenu li
{
    padding: 0 5px;
}
header .mainmenu a
{
    position: relative;
}
header .mainmenu a::after
{
    position: absolute;
    right: 20px;
    bottom: 5px;
    left: auto;

    width: 0;

    content: '';
    -webkit-transition: width 300ms ease-in;
         -o-transition: width 300ms ease-in;
            transition: width 300ms ease-in;

    border-bottom: 2px solid var(--main-accent);
}
header .mainmenu a:hover::after
{
    right: auto;
    left: 20px;

    width: calc(100% - 40px);
}
header .mainmenu .current-menu-item a
{
    color: var(--main-accent);
}
header .mainmenu .current-menu-item a::after
{
    width: calc(100% - 40px);
}
a.eael-post-elements-readmore-btn {
    margin-top: 10px;
}
.backtotop:link
{
    font-size: 24px;
    line-height: 40px;

    position: fixed;
    z-index: 2;
    right: 30px;
    bottom: 50px;

    display: inline-block;

    width: 40px;

    text-align: center;

    background-color: white;
    color: black;
}
.backtotop i {
    color: inherit;
}
.backtotop:hover i {
  color: var(--main-accent);
}
.burgermenu
{
    position: relative;

    display: none;

    width: 16px;
    height: 16px;
    margin: 12px;
}
.burgermenu div
{
    position: absolute;
    top: calc(50% - 1px );

    width: 50%;
    height: 2px;

    background-color: #e2e2e2;
}
.burgermenu::before,
.burgermenu::after
{
    position: absolute;
    right: 0;
    left: 0;

    height: 2px;

    content: '';

    background-color: #e2e2e2;
}
.burgermenu::before
{
    top: 0;
}
.burgermenu::after
{
    bottom: 0;
}

.flex
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.grid {
  display: -ms-grid;
  display: grid;
}
.threegrid {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
.smgap {
  gap:15px;
}
.spacebetween
{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flexend
{
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.aligncenter
{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.textaligncenter
{
    text-align: center;
}
.container,
.headercontainer,
.lgcontainer,
.medcontainer,
.mincontainer
{
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
.container
{
    max-width: 1200px;
}
.headercontainer
{
    max-width: 1773px;
}
.lgcontainer
{
    max-width: 1693px;
}
.medcontainer
{
    max-width: 770px;
}
.mincontainer
{
    max-width: 568px;
}
.headercontainer .flex .item
{
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.grid * {
	word-break: break-word;
}
.grid h3 {
	 font-size: 28px;
}
.logo a
{
    line-height: 0;

    display: block;
}
.logo img
{
    width: auto;
    max-height: 66px;
}

.section
{
    padding-top: 60px;
    padding-bottom: 60px;
}
footer .section
{
    padding-bottom: 0;
}

.grayfooter
{
    padding: 60px 0;
}

.headercontainer nav div > ul
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.headercontainer nav div ul li {
  position: relative;
}
.headercontainer nav div ul li {
  position: relative;
}
.menu-item-has-children {

}
.headercontainer .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  background-color: black;
  left: 0;
  padding-top: 15px;
}
input[type='submit']
{
    font-size: 17px;
    line-height: 28px;

    display: inline-block;

    min-width: 175px;
    padding: 12px 30px;

    text-align: center;
    text-transform: uppercase;

    border: 1px solid #36393e;
    background-color: transparent;
}

input[type='submit']:hover
{
    color: white;
    border-color: var(--main-accent);
    background-color: var(--main-accent);
}

.line
{
    position: relative;
    z-index: 1;

    padding-bottom: 30px;
}
.line::after
{
    position: absolute;
    top: 100%;
    left: calc(50% - 25px);

    width: 50px;

    content: '';

    border-bottom: 1px solid var(--main-accent);
}
.accent
{
    color: var(--main-accent);
}

.copyright
{
    font-size: 10px;

    letter-spacing: 5px;
    text-transform: uppercase;

    color: #a0a0a0;
}
ul.post-categories {
    max-width: 1140px;
    margin: 0 auto;
}
.post-categories li {
    list-style-type: none;
    padding: 0 10px;
}
.post-categories li a:link {
    color: rgb(62 121 0);
}
main .elementor a {
    word-break: break-word;
}
body:not(.home) main .elementor a:hover,
.post-categories li a:hover{
    opacity: 0.7;
}

.grecaptcha-badge {
    display: none !important;
}

@media (max-width: 1350px)
{
    header
    {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (max-width: 1224px)
{
    .lgcontainer
    {
        max-width: 1000px;
    }
    header .mainmenu a,
    footer .menu a
    {
        padding: 5px 10px;
    }
}
@media (max-width: 1150px)
{

    .burgermenu
    {
        display: block;
    }
    .mainmenu {
      display: none;
    }
    .headercontainer .sub-menu {
      position: relative;
    }
    .mobilemenu
    {
        position: absolute;
        z-index: 2;
        top: 100%;
        right: 0;
        left: 0;

        display: none;

        text-transform: uppercase;

        background-color: black;
    }
    header .mobilemenu a
    {
        font-size: 14px;

        padding: 12px 30px;

        border-top: 1px solid rgba(140,140,140,.2);
    }
    header .mobilemenu a::after
    {
        display: none;
    }
}
@media (max-width: 870px)
{
    .threegrid
    {
        max-width: 570px;
        margin: 0 auto;

        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }

}
@media (max-width: 540px)
{
    .section
    {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    footer .menu
    {
        margin-top: 40px;
    }
}
@media (max-width: 420px)
{
    input[type='email'],
    input[type='text'],
    input[type='submit']
    {
        display: block;

        margin-right: auto;
        margin-left: auto;
    }
    input[type='email']
    {
        width: 100%;
        margin-bottom: 20px;
    }
    input[type='submit']
    {
        margin-top: 20px;
    }
   
    h1,
    h2
    {
        font-size: 10vw;

        margin-bottom: 1em;
    }
}
