*,
*:before,
*:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
img {
margin: 0;
padding: 0;
border: 0;
line-height: 0;
vertical-align: top;
max-width: 100%;
height: auto;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
margin: 1.5rem 0;
}
td,
th {
padding: 0.5rem 1rem;
border: solid 1px #ddd;
}
th {
background: var(--extralight);
text-align: left;
}
ul,
ol {
padding: 0;
}
ul ul,
ul ul ul,
ol ol,
ol ol ol {
margin: 0.5rem 0;
}
ol ol,
ol ol ol {
padding-left: 1rem;
}
ul li {
list-style-type: disc;
margin-bottom: 0.25rem;
margin-left: 1rem;
line-height: 1.3;
}
ul li::marker {
color: var(--middleblue);
}
ol {
list-style: none;
counter-reset: my-counter;
}
ol li {
counter-increment: my-counter;
margin-bottom: 0.5rem;
line-height: 1.3;
padding-left: 2rem;
position: relative;
}
ol li::before {
content: counter(my-counter) '.';
background: var(--middleblue);
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
display: inline-block;
line-height: 1.5rem;
color: white;
text-align: center;
margin-right: 0.5rem;
position: absolute;
left: 0;
font-size: smaller;
}
p {
line-height: 1.5;
}
a {
color: var(--active);
text-decoration: none;
}
a:hover {
color: var(--text);
text-decoration: none;
}
:root { --active: #E6B127;
--text: #1A2541;
--extralight: #E5EDF7;
--lightblue: #49B0F5;
--blue: #2478C0;
--middleblue: #10328D;
--darkblue: #0C2B73; --tran-02: all 0.2s ease;
--tran-03: all 0.3s ease;
--tran-04: all 0.4s ease;
--tran-05: all 0.5s ease;
}
html {
font-size: 20px;
}
body {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
color: var(--text);
margin: 0;
}
h1 {
font-size: 3rem;
margin: 0 0 1rem 0;
text-transform: uppercase;
}
h2 {
font-size: 2rem;
margin: 0 0 1rem 0;
font-weight: 700;
text-transform: uppercase;
}
h3 {
font-size: 1.25rem;
margin: 1.5rem 0 1rem 0;
text-transform: uppercase;
}
h4 {
font-size: 1rem;
margin: 1.5rem 0 1rem 0;
}
h1 a,
h2 a,
h3 a,
h4 a {
color: inherit;
}
.h2-blue {
color: var(--middleblue);
}
blockquote,
q {
quotes: none;
}
blockquote {
background: var(--extralight);
margin: 1.5rem 0;
padding: 0.5rem 1.5rem;
overflow: hidden;
border-left: solid 5px var(--blue);
}
.email,
.tel,
.cim {
list-style-type: none;
position: relative;
line-height: 2;
padding: 0 0 10px 15px;
}
.email:before {
content: "";
width: 35px;
height: 25px;
position: absolute;
display: block;
background: url(//fejlodniakarok.hu/wp-content/themes/dev-2023/img/email.png) center center no-repeat;
left: -33px;
top: 25%;
margin-top: -7px;
}
.tel:before {
content: "";
width: 35px;
height: 30px;
position: absolute;
display: block;
background: url(//fejlodniakarok.hu/wp-content/themes/dev-2023/img/tel.png) center center no-repeat;
left: -33px;
top: 25%;
margin-top: -7px;
}
.cim:before {
content: "";
width: 30px;
height: 39px;
position: absolute;
display: block;
background: url(//fejlodniakarok.hu/wp-content/themes/dev-2023/img/cim.png) center center no-repeat;
left: -33px;
top: 25%;
margin-top: -7px;
}
.quiz,
.quiz1 {
padding: 0 0 1rem 0;
border-bottom: 1px solid var(--extralight);
}
.teszt-form div:not(.qty) {
padding: 1rem;
}
header {
padding: 1.25rem 0;
background: #fff;
filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
z-index: 999;
}
header .content-box {
display: flex;
justify-content: space-between;
align-items: center;
}
#logo {
width: 15rem;
}
.read-more {
font-weight: 500;
padding: 0.5rem 1rem;
border: 1px solid var(--active);
border-radius: 30px;
text-transform: uppercase;
}
#hero .read-more {
margin-left: 2rem;
}
.border-solid a {
color: inherit;
}
.border-solid a:hover {
color: var(--active);
}
.align-center {
text-align: center;
}
.thin-p {
margin: 0 !important;
font-weight: 300;
text-transform: uppercase;
}  @keyframes slideInLeft {
from {
transform: translateX(-100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideInTop {
from {
transform: translateY(-100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
} h1,
.button {
animation: slideInLeft 0.5s ease-in-out;
}
.img-left {
animation: slideInLeft 0.5s ease-in-out;
}
.img-right {
animation: slideInRight 0.5s ease-in-out;
}
.border-text-box {
animation: slideInTop 0.5s ease-in-out;
}
.p-left {
animation: slideInLeft 0.5s ease-in-out;
}
.p-right {
animation: slideInRight 0.5s ease-in-out;
} .landing-hero {
background-image: url(//fejlodniakarok.hu/wp-content/themes/dev-2023/img/landing-hero.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
}
.share-buttons {
display: flex;
justify-content: center; gap: 10px; }
.share-buttons img {
width: 40px; height: auto; }
.webinar-form {
padding-top: 5rem;
}
.page-id-2474 h1 {
text-align: center !important;
} .counter-landing {
margin-top: 12rem !important;
}
.counter {
display: flex;
justify-content: center;
align-items: center;
margin-top: -7rem;
}
.counter .border-solid {
padding: 1rem 2rem 1rem 6rem !important;
}
. .ikon1,
.ikon2,
.ikon3 {
list-style-type: none;
position: relative;
padding: 0 0 10px 15px;
}
@media (max-width: 768px) {
.kepzes-ara {
margin: 3rem!important;
}
.page-id-2474 img.wp-image-1191 {
margin-top: 116px;
}
.page-id-14 div#footer-info ul {
margin: 30px;
text-align: left;
}
.page-id-14 div#top-social ul {
margin: 5%;
}
}
input#wp-comment-cookies-consent {
display: none;
}
p.comment-form-email label {
display: block;
}
p.comment-form-url label {
display: block;
}
p.akismet_comment_form_privacy_notice {
display: none;
}
#main-top {
position: sticky;
top: 0;
z-index: 10000;
background: #fff;
}
header {
position: sticky;
top: 40px;
z-index: 9999;
background: #fff;
}
body.scrolled #main-top,
body.sticky #main-top,
header.scrolled ~ #main-top {
height: 28px;
min-height: 28px;
}
body.scrolled #main-top .content-box,
body.scrolled #main-top #top,
body.sticky #main-top .content-box,
body.sticky #main-top #top {
height: 28px;
min-height: 28px;
}
body.scrolled #main-top li,
body.scrolled #main-top a,
body.sticky #main-top li,
body.sticky #main-top a {
font-size: 13px;
line-height: 28px;
}
body.scrolled #top-social svg,
body.sticky #top-social svg {
width: 18px;
height: 18px;
}
body.scrolled header,
body.sticky header {
top: 28px;
}
@media screen and (max-width: 767px) {
#main-top {
display: none !important;
visibility: hidden !important;
height: 0 !important;
min-height: 0 !important;
max-height: 0 !important;
overflow: hidden !important;
}
header {
top: 0 !important;
}
} .home section {
padding: 6vw 0;
}
.page-title {
background: var(--extralight);
padding: 3rem 0;
border-radius: 0 0 100px 0;
}
.border-text {
padding: 1rem;
color: var(--text) !important;
box-shadow: inset 0 5px 20px rgba(255, 255, 255, 0.9),
0 1px 20px rgba(0, 0, 0, 0.2);
background: radial-gradient(farthest-corner at 40px 40px,
rgba(255, 255, 255, 0.5)0%,
rgba(255, 255, 255, 0.8)100%);
backdrop-filter: blur(5px);
text-shadow: 1px 1px 10px rgba(255, 255, 255, 0.6);
margin: 1rem 0 2rem 0;
border-radius: 50px 0 50px 0;
}
.border-text img {
border-radius: 50px 0 0 0;
}
.border-solid {
border: double 5px #B0B0AF;
padding: 1rem 1rem 2rem 1rem;
border-radius: 50px 0 50px 0;
}
.image-radius img {
border-radius: 50px 0 50px 0;
}
#services .border-solid {
min-height: 35rem;
}
.archive .border-solid {
min-height: 25rem;
}
#services p {
margin-bottom: 2rem;
} #hero {
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
padding: 2vw 0 6vw 0 !important;
}
.hero-text {
padding: 2rem 0;
max-width: 40rem;
} .trainings-box p {
margin-bottom: 0 !important;
}
.trainings-box h3 {
margin-bottom: 2.5rem !important;
color: var(--middleblue);
}
.tovabb {
display: block;
text-align: center;
margin-top: 2rem;
}
.tovabb .button {
margin-top: 2rem;
}
.trainings #services .border-solid {
min-height: 25rem !important;
} .disc {
margin: 0 5rem -15rem 5rem;
}
.disc2 {
margin: 10rem -10rem -1rem 11rem !important;
}
.price {
background: var(--lightblue);
border-radius: 50px 0 50px 0;
height: 530px;
}
.price .border-text {
margin: 0 !important;
}
.custom-accordion {
background-color: var(--lightblue);
color: var(--text);
cursor: pointer;
padding: 1rem 1rem 1rem 2rem;
margin-bottom: 1rem;
border-radius: 50px 0 50px 0;
width: 100%;
text-align: left;
outline: none;
transition: 0.4s;
}
.active,
.custom-accordion:hover {
background-color: #B2E0F9;
}
.custom-accordion:after {
content: '\002B';
color: var(--text);
font-weight: bold;
float: right;
margin-right: 20px;
}
.panel {
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
.countdown-row {
display: flex;
justify-content: center; align-items: center;
background-color: var(--extralight);
padding: 1rem 0;
}
#countdown {
font-size: 20px;
font-weight: 600;
color: var(--text);
margin: 0 !important;
background-color: var(--lightblue);
padding: 0.5rem;
border-radius: 50px;
}
.countdown-box {
display: inline-flex;
align-items: center;
}
.landing blockquote {
color: var(--text);
}
.spacer {
width: 10px;
}
.Blur-free .border-text {
backdrop-filter: none;
}
.hatter-p {
display: inline-block;
font-size: 20px;
font-weight: 600;
color: var(--text);
margin: 0 !important;
background-color: var(--lightblue);
padding: 1rem;
text-align: center;
border-radius: 50px;
}
.kepzesek2 .border-text,
.kepzesek .border-text,
.kepzesek3 .border-text {
padding: 1rem;
color: var(--text) !important;
box-shadow: inset 0 5px 20px rgba(255, 255, 255, 0.9), 0 1px 20px rgba(0, 0, 0, 0.2);
background: #fff;
backdrop-filter: none;
text-shadow: none;
margin: 1rem 0 2rem 0;
border-radius: 50px 0 50px 0;
}
.kepzesek3 .border-solid {
min-height: 230px;
}
.kepzesek .border-solid {
min-height: 300px;
}
.kepzesek2 .border-solid {
min-height: 590px;
} .border-image img {
border-radius: 50px 0 50px 0;
}
.about h2 {
text-align: left;
}
.about {
background-image: url(//fejlodniakarok.hu/wp-content/themes/dev-2023/img/furkesz-bg3.jpg);
} .testimonial {
background: rgb(73, 176, 245);
background: linear-gradient(180deg, rgba(73, 176, 245, 1) 0%, rgba(36, 120, 192, 1) 38%, rgba(16, 50, 141, 1) 90%);
color: #fff;
text-align: center;
}
div.my_carousel .item-list .item > div {
padding: 1rem;
height: auto !important;
}
.my_carousel .nav div {
background: var(--active) !important;
}
.my_carousel .nav div:hover {
background: var(--active) !important;
}
.my_carousel .nav .active {
background: var(--active) !important;
}
.my_carousel .nav {
z-index: 2 !important;
}
.my_carousel .prev svg path,
.my_carousel .next svg path {
fill: var(--active) !important;
width: 3rem;
height: auto;
}
.my_carousel .prev:hover:before,
.my_carousel .next:hover:before,
.my_carousel .prev:hover:after,
.my_carousel .next:hover:after {
border-color: var(--active) !important;
}
div.my_carousel:not([data-fade="1"]) .item-list > div {
padding: 0 5rem !important;
}
.item-text {
display: flex;
justify-content: center;
align-items: center;
}
.item-text p {
padding: 0;
margin: 0 0 0 1rem;
text-align: left
}
.item-text:first-of-type {
flex-basis: 8rem;
flex-grow: 0;
flex-shrink: 0;
}
.item-text img {
width: 5rem !important;
height: auto;
border-radius: 50%;
}
div.my_carousel .item-list .item > div {
box-shadow: none !important;
}
.testi-text {
font-style: italic;
}
div.my_carousel .prev {
left: 5px !important;
}
div.my_carousel .next {
right: 5px !important;
} .how .border-image {
margin-right: 2rem;
} :where(.wp-block-columns) {
margin-bottom: 0 !important;
}
.timeline {
margin: 0px;
position: relative;
}
.timeline li {
position: relative;
list-style-type: none;
padding: 0px 0 60px 0;
}
.timeline li:nth-child(odd) {
margin-right: 50%;
padding-right: 80px;
}
.timeline li:nth-child(even) {
margin-left: 50%;
padding-left: 80px;
}
.time-dot {
background-color: var(--lightblue);
background-size: 55px auto;
background-position: center center;
background-repeat: no-repeat;
width: 120px;
height: 120px;
line-height: 120px;
position: absolute;
top: 0;
font-size: 20px;
text-align: center;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
display: block;
font-weight: 600;
text-align: center;
}
.time-dot p {
text-align: center;
margin: 0;
line-height: 120px;
}
.timeline li:nth-child(odd) .time-dot {
right: -60px;
}
.timeline li:nth-child(even) .time-dot {
left: -60px;
}
.timeline li:nth-child(odd):before {
top: 0px;
right: -1px;
content: "";
width: 2px;
height: 100%;
background: #ddd;
display: block;
position: absolute;
}
.timeline li:nth-child(even):before {
top: 0px;
left: -1px;
content: "";
width: 2px;
height: 100%;
background: #ddd;
display: block;
position: absolute;
}
.time-content p {
line-height: 1.4;
margin: 0 !important;
padding: 5px 0 5px 0;
}
.timeline li:nth-child(odd) .time-content {
text-align: right;
}
.time-content p:last-of-type {
border-bottom: none !important;
} .post-meta {
display: flex;
}
.post-meta li {
list-style-type: none;
padding: 0;
margin: 0;
margin-right: 1rem;
}
.post-meta li svg {
width: 1rem;
height: 1rem;
vertical-align: baseline;
margin-top: 0.25rem;
}
.post-meta li path,
.post-meta li polygon {
fill: var(--active);
}
.post-tags {
border-top: solid 2px var(--text);
padding-top: 1rem;
}
.post-tags a,
.wp-block-tag-cloud a {
display: inline-block;
background: var(--lightblue);
color: #fff;
font-size: 0.75rem !important;
text-transform: uppercase;
padding: 0.25rem 0.5rem;
margin: 0 0.25rem 0.25rem 0;
}
.post-tags a:hover {
background: var(--active);
color: #fff;
}
#related-post img {
margin-bottom: 1rem;
}
#author {
display: flex;
}
#author div:first-of-type {
flex-basis: 8rem;
flex-grow: 0;
flex-shrink: 0;
}
.avatar {
width: 6.5rem;
height: auto;
}
.comment-body {
border-top: solid 2px var(--extralight);
padding: 1rem 0;
margin: 1rem 0;
}
.comment-body p,
.comment-body reply {
padding-left: 2rem;
}
.comment-author,
.comment-meta {
display: inline-block;
margin-right: 1rem;
}
.comment-list {}
.comment-list li {}
.comment-list li:before {
content: none;
}
.comment-list > li {
padding: 0;
}
.pagination {
text-align: center;
display: inline-block;
margin: 0 auto;
}
.pagination a,
.pagination span {
width: 2rem;
height: 2rem;
line-height: 2rem;
display: block;
float: left;
}
.pagination .current {
background: var(--active);
color: var(--extralight);
font-weight: bold;
}
aside > div {
background: var(--extralight);
padding: 1rem;
margin-bottom: 1rem;
}
.wp-block-group a {
color: inherit;
}
.wp-block-group a:hover {
color: var(--active);
}
.single .border-solid a {
color: var(--active);
}
.single .border-solid a:hover {
color: var(--middleblue);
} .partners {
background: var(--extralight);
padding: 3rem 0;
text-align: center;
}  .constant-contact {
background: url(//fejlodniakarok.hu/wp-content/themes/dev-2023/img/kapcsolat-bg.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
padding: 4rem 0;
}
.ai-hero {
background: url(//fejlodniakarok.hu/wp-content/themes/dev-2023/img/img.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.copyright a:hover {
color: #E6B127 !important;
}
.copyright a {
color: #fff !important;
}
.bizalmi-elem {
margin: -3rem;
}
.bizalmi-elem border-solid {
padding: 1rem 0 0 0!important;
}
.newsletter-box {
background: var(--blue);
color: #fff;
padding: 2rem;
}
footer {
background: var(--darkblue);
color: #fff;
padding: 2rem 0 2rem 0;
}
footer ul li::marker {
color: var(--active) !important;
}
footer h3 {
color: #fff;
}
.copyright {
background: var(--darkblue);
color: #fff;
text-align: center;
font-size: smaller;
border: 1px solid rgba(250, 250, 250, 0.4);
}
#gotop {
width: 2rem;
height: 2rem;
line-height: 2rem;
background: var(--active);
position: fixed;
bottom: 5rem;
right: 2rem;
border-radius: 50%;
box-shadow: 0 1px 3px rgb(0 0 0 / 10%);
padding: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
z-index: 10000;
}
#gotop svg {
width: 1rem;
height: 1rem;
display: block;
}
#gotop svg path {
fill: #fff;
}  .accordion {
margin: 0 0 2rem 0;
clear: both;
}
.accordion .accordion-content {
display: none;
}
.accordion .accordion-title h2,
.accordion .accordion-title h3,
.accordion .accordion-title h4 {
margin: 0;
}
.accordion .accordion-title {
cursor: pointer;
margin: 0;
line-height: 1.3;
border-bottom: solid 1px #ddd;
color: inherit;
padding: 0.65rem 0.5rem 0.65rem 2rem;
position: relative;
}
.accordion .accordion-title:after {
border-style: solid;
border-width: 2px 2px 0 0;
content: "";
display: inline-block;
height: 0.6rem;
width: 0.6rem;
background: transparent;
position: absolute;
top: 50%;
left: 0;
margin-top: -0.3rem;
transform: rotate(45deg);
vertical-align: top;
}
.accordion .accordion-title.active,
.accordion .accordion-title:hover {
color: var(--active);
}
.accordion .active h4 {
border-bottom: none;
}
.accordion .accordion-title.active:after,
.accordion .accordion-title:hover:after {
transform: rotate(135deg);
left: 0.25rem;
margin-top: -0.35rem;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
.accordion .accordion-content {
margin: 0;
padding: 1rem 2rem;
overflow: hidden;
border-bottom: solid 1px #ddd;
}
.accordion .accordion-content p {
line-height: 1.4 !important;
}
.accordion .accordion-content p:last-of-type {
margin: 0 !important;
}
@media only screen and (max-width: 1440px) {
.counter {
margin-top: -5rem;
}
}
@media only screen and (max-width: 768px) {
html {
font-size: 18px;
}
body {
font-size: 18px;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1rem;
}
h4 {
font-size: 0.75rem;
}
.page-title {
padding: 1rem 0;
}
.border-solid {
padding: 0.75rem;
}
.webinar-form {
padding-top: 2rem;
}
.disc {
margin: 0 0.5rem -15rem 0.5rem !important;
}
.disc2 {
margin: 5px 0 -4rem 5px !important;
}
countdown-row {
padding: 1rem 0.5rem;
}
#gotop {
right: 2rem;
}
.constant-contact {
padding: 2rem 0;
margin-top: 2rem;
}
footer {
padding: 2rem 1rem 1rem 1rem;
}
footer img {
max-width: 50% !important;
}
.kepzesek .border-solid {
min-height: 180px;
}
.kepzesek2 .border-solid {
min-height: 280px;
}
#services .border-solid {
min-height: 30rem;
}
.trenereink .wp-block-image .alignleft {
float: none;
margin: 0.5em 1em 0.5em 0;
}
.timeline li {
margin: 0 !important;
padding: 0 0 20px 60px !important;
}
.timeline li:before {
left: 0px !important;
}
.time-dot {
width: 60px;
height: 60px;
line-height: 60px;
left: -6px !important;
}
.time-content:before {
left: -11px;
transform: rotate(-135deg) !important;
-webkit-transform: rotate(-135deg) !important;
-moz-transform: rotate(-135deg) !important;
-o-transform: rotate(-135deg) !important;
}
.timeline li:nth-child(odd) .time-content {
text-align: left;
}
.time-dot p {
line-height: 60px;
}
.kepzes-ara {
margin: 3rem!important;
}
}
@media only screen and (max-width: 425px) {
html {
font-size: 16px;
}
body {
font-size: 16px;
}
h1 {
font-size: 1.75rem;
}
h2 {
font-size: 1.5rem;
}
h3 {
font-size: 1rem;
}
h4 {
font-size: 0.75rem;
}
.read-more {
font-size: smaller;
}
#hero .read-more {
margin-left: 0;
margin-top: 1.5rem !important;
display: inline-block;
}
.counter-landing {
margin-top: 5rem !important;
}
.ikon1:before,
.ikon2:before,
.ikon3:before {
left: 30px;
}
}