html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    position: relative;
    font-family: 'Oswald', sans-serif;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
    color: white;
    text-decoration: none;
}


/* END OF CSS RESTE ---------------------------
-----------------------------------------------
----------------------------------------------- */

:root {
    --narancs : rgb(253, 98, 98);
    --kek: rgb(136,156,231);
    --szurke : #555;
    --vilagosszurke: #999;
    --fekete: #1b2b4b;
    --textszurke: #66717f;
    --backgroundszurke: #f7f7f7;
    --vilagosfekete:#232323;
}

.narancs {
    color: var(--narancs);
}

.circle {
    height: 24px;
    width: 24px;
    border-radius: 24px;
    background-color: black;
    position: fixed; 
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999; /* so that it stays on top of all other elements */
  }

  .block {
    display: none;
  }

  @media (max-width:970px) {
    .circle {
        display: none;
    }
  }


 /* css for the kapcsolat.html-----------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------- */

.center__box-center {
    padding-top: 4rem;
    font-family: 'Work Sans', sans-serif;
    background-color: #f7f9f8;
    line-height: 1.4rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.center__box {
    text-align: center;
    margin: auto;
    max-width: 1000px;
    padding: 30px;
}

.Impresszum__h2 {
    color: #14AAA5;
    font-size: 1.4rem;
    font-weight: 600;
}

.Elérhetőségek__felsorolás, .Demeter__home-kft {
    color: #0a7d83;
    font-weight: 600;
    font-size: 20px;
}

.Demeter__home-kft {
    margin-bottom: 0.3rem;
}

strong {
    font-weight: 600;
}

button {
    background-color: #87AA14;
    border: solid 1px #647d10;
    padding: 9px 7px;
    border-radius: 7px;
}
.form {
  width: 640px;
  height: 855px;
}
/* START OF FOOTER  ---------------------------
-----------------------------------------------
----------------------------------------------- */ 

.footer {
    background-color: var(--fekete);
}

.footer-wrapper {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    color: white;
    padding-bottom: 30px;
}

.footer-top h1 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 30px;
}

.footer-section {
    width: 300px;
    box-sizing: border-box;
    margin: 3vw;
}

.footer-section p {
    padding-bottom: 30px;
}

.footer-bot ul {
    display: flex;
    justify-content: space-between;
    width: 600px;
    margin: 0 auto;
    color: white;
    padding-bottom: 40px;
}

@media (max-width:1300px) {
    .footer-wrapper {
        width: 90vw;
    }
}

@media (max-width:700px) {
    .footer-bot ul {
        display: block;
        width: 80vw;
    }
    .footer-bot li {
        padding-bottom: 10px;
    }
}

@media (max-width:540px) {
    .footer-top {
        display: block;
    }
    .footer-section {
        width: 80vw;
        padding-bottom: 20px;
    }
}


