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;
    }
  }


   /* START OF cim  ---------------------------
-----------------------------------------------
----------------------------------------------- */

.zold {
    background-color: #F3FFF3;
}

.piros {
    background-color: #FFF0F0;
}


.cim, .cim-wrapper, .cim-container {
    width: 100%;
}

.cim h1  {
    font-size: 40px;
    text-align: center;
    padding-top: 50px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: var(--narancs);
    text-shadow: 3px 2px 0px rgba(0,0,0,0.2);
}

.sections {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 100px;
}



.sections-wrapper {
    width: 93vw;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
}

.sections-left {
    display: table;
}

.sections-left-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.sections-right {
    padding-left: 50px;
    padding-right: 50px;
}

.sections img {
    width: 600px;
}

.sections h1 {
    font-size: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--narancs);
    padding-top: 50px;
    padding-bottom: 35px;
}

.sections p {
    font-family: "Open Sans", sans-serif; 
    font-weight: 400;
    font-size: 18px;
    color: var(--textszurke);
    line-height: 28px;
    padding-bottom: 30px;   
}

@media (max-width:1221px) {
    .sections img {
        width: 400px;
    }
}
@media (max-width:970px) {
.sections-wrapper {
    display: block;
}
.sections-left {
    width: 400px;
    margin: 0 auto;
}
}
@media (max-width:560px){
    .sections-right {
        padding: 5px;
    }
}
@media (max-width:440px) {
    .sections img {
        width: 300px;
    }
    .sections-left {
        width: 300px;
    }
}



/* 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;
    }
}

