article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}
audio,
canvas,
video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
[hidden] {
    display: none;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    margin: 0;
}
a:focus {
    outline: none;
}
a:active,
a:hover {
    outline: 0;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: bold;
}
dfn {
    font-style: italic;
}
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}
mark {
    background: #ff0;
    color: #000;
}
code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}
pre {
    white-space: pre-wrap;
}
q {
    quotes: '\201C''\201D''\2018''\2019';
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 0;
}
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}
button,
input {
    line-height: normal;
}
button,
select {
    text-transform: none;
}
button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
input[type='checkbox'],
input[type='radio'] {
    box-sizing: border-box;
    padding: 0;
}
input[type='search'] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
address,
blockqoute,
span,
ul,
ol,
li,
dl,
dd,
dt,
img,
form,
fieldset,
input {
    padding: 0px;
    margin: 0px;
}

/*
	Font: 
	font-family: 'Open Sans', sans-serif;
	
	Colors:
	gray:  #555555
	gray2: #504f54
	red:   #a51c3b
*/

/* General styles */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
p {
    font-size: 14px;
    color: #323232;
}
a {
    text-decoration: none;
    font-size: 14px;
    color: #ce5c18;
}
a:hover {
    color: #a53900;
}
.center {
    max-width: 1170px;
    margin: 0 auto 0 auto;
}
.trans {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
}
.clear {
    clear: both;
}
.no-scroll {
    overflow: hidden;
}
.group:after {
    content: '';
    display: table;
    clear: both;
}
*:focus {
    outline: none;
}
a,
li,
div {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-tap-highlight-color: transparent;
}

.inactive {
    visibility: hidden;
    opacity: 0;
}

/* Buttons */
.button {
    display: inline-block;
    border-radius: 10px;
    height: 40px;
    line-height: 40px;
    padding: 0px 30px;
    border-radius: 25px;
    border: none;
}
.button.white {
    font-size: 15px;
    background: #fff;
    color: #000;
}
.button.white:hover {
    color: #ce5c18 !important;
}
.button.orange-text {
    font-size: 15px;
    background: #fff;
    color: #cf6120;
}
.button.orange-text:hover {
    background: #b44600;
    color: #fff;
}
.button.orange {
    font-size: 15px !important;
    background: #ce5c18;
    color: #fff;
}
.button.orange:hover {
    background: #b44600;
}
.button.disabled {
    color: #cccccc;
    cursor: default;
}
.button.disabled:hover {
    color: #cccccc;
    background: #fff;
}

/* Form styles */
.input-item {
    position: relative;
    margin: 0px 0px 13px 0px;
}
input[type='text'],
textarea {
    width: 100%;
    border: none;
    height: 38px;
    line-height: 38px;
    font-size: 13px;
    color: #000;
    padding: 0px 0px 0px 15px;
}
textarea {
    padding: 5px 0px 0px 15px;
    line-height: 1.5em;
}
::-webkit-input-placeholder {
    font-size: 13px;
    color: #999999;
}
::-moz-placeholder {
    font-size: 13px;
    color: #999999;
}
:-ms-input-placeholder {
    font-size: 13px;
    color: #999999;
}
:-moz-placeholder {
    font-size: 13px;
    color: #999999;
}
.error-message {
    position: absolute;
    right: 10px;
    color: #f00;
    font-size: 11px;
    bottom: 8px;
    font-weight: 600;
}
.validation-failed {
    border: 1px solid #f00 !important;
}

/* Header */
header {
    border-top: 7px solid #ededed;
    padding: 16px 0px 0px;
    background: #fff;
    position: relative;
    z-index: 1000;
}
header.no-relative {
    position: initial;
}

/* Logo */
.logo {
    float: left;
    margin: 8px 0px 0px;
}

/* Top bar */
#top-info {
    float: right;
    display: flex;
    align-items: center;
    padding: 0px 55px 0px;
}
#top-info a,
#top-info span {
    font-size: 13px;
    color: #999999;
}
#top-info a:hover,
#top-info .contact span:hover {
    color: #ce5c18;
}
#top-info > div {
    float: left;
    margin: 0px 0px 0px 15px;
}
#top-info .lang {
    /* display: none; */
}
#top-info .lang a.english {
    background: url(../images/icon_header_english_flag.jpg) no-repeat left;
    padding: 0px 0px 0px 20px;
}

#top-info .lang a.hungarian {
    background: url(../images/icon_header_hungarian_flag.jpg) no-repeat left;
    padding: 0px 0px 0px 20px;
}

#search-form {
    position: relative;
}
#search-form input[type='text'] {
    width: 195px;
    height: 30px;
    border-radius: 15px;
    border: 1px solid #cccccc;
    line-height: 30px;
    font-size: 13px;
    color: #999999;
}
#search-form input[type='submit'] {
    width: 16px;
    height: 16px;
    background: url(../images/icon_header_search.jpg) no-repeat left;
    border: none;
    position: absolute;
    right: 15px;
    top: 7px;
}
#top-info .offer-button a {
    color: #fff;
    height: 30px;
    line-height: 30px;
}

/* Menu */
#menu {
    float: right;
    margin: 24px 0px 0px;
    padding: 0px 55px 0px 0px;
}
#menu ul {
    list-style: none;
}
#menu > ul > li {
    font-size: 13px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 0px 0px 0px 45px;
    position: relative;
    padding: 0px 0px 22px;
}
#menu > ul > li:first-child {
    margin: 0px;
}
#menu > ul > li.drop-down {
    cursor: pointer;
}
#menu > ul > li a {
    font-size: 13px;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 5px 22px 5px;
}
#menu > ul > li > a:hover,
#menu > ul > li > a.active {
    color: #ce5c18;
}
#menu > ul > li.drop-down:hover {
    color: #ce5c18;
}
#menu > ul > li.drop-down:hover > a {
    color: #ce5c18;
}
#menu > ul > li:hover > ul {
    display: block;
}
#menu > ul > li ul {
    position: absolute;
    display: none;
    z-index: 50000;
    left: -20px;
    top: 40px;
}
#menu > ul > li ul li a {
    display: block;
    padding: 12px 0px 12px 20px;
    background: #fff;
    width: 200px;
    border-bottom: 1px solid #e1e1e1;
}
#menu > ul > li ul li a:hover {
    color: #ce5c18;
}
#menu > ul > li ul li:last-child a {
    border-bottom: 4px solid #ce5c18;
}

/* Mobile menu */
#mobile-menu {
    display: none;
}
#mobile-menu {
    position: absolute;
    width: 90px;
    height: 24px;
    z-index: 9999999;
    cursor: pointer;
    right: 20px;
    top: 29px;
    color: #ce5c18;
}
#mobile-menu span.top,
#mobile-menu span.bottom,
#mobile-menu span.middle {
    position: absolute;
    right: 0px;
    background: #ce5c18;
    width: 32px;
    height: 2px;
}
#mobile-menu span.top {
    top: 3px;
}
#mobile-menu span.middle {
    top: 50%;
    transform: translateY(-50%);
}
#mobile-menu span.bottom {
    bottom: 3px;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    z-index: 900000;
    background: rgba(206, 92, 24, 1);
    padding: 100px 0px 0px;
    text-align: center;
    overflow: scroll;
}
.overlay.open {
    opacity: 0.95;
    visibility: visible;
    height: 100%;
    transition: opacity 0.35s, visibility 0.35s, height 0.35s;
}
.overlay.open li {
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: 0.35s;
    padding: 8px 0px;
    opacity: 0;
    position: relative;
    list-style: none;
    padding: 8px 0px;
}
.overlay.open ul li i {
    color: #fff;
    font-size: 25px;
}
.overlay.open ul li,
.overlay.open ul li a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
}
.overlay.open ul li ul {
    display: none;
}
.overlay.open ul li ul.open {
    display: block;
}
.overlay.open ul li.drop-down ul {
    margin: 15px 0px;
}
.overlay.open ul li.drop-down ul li {
    animation: none;
    opacity: 1;
}
.overlay.open ul li.drop-down ul li a {
    font-size: 18px;
}
.overlay.open #btn-close {
    position: absolute;
    top: 30px;
    background: #ce5c18;
    width: 50px;
    height: 50px;
    z-index: 9999999;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
}
.overlay.open #btn-close span {
    position: absolute;
    left: 0;
    background: #fff;
    width: 100%;
    height: 2px;
    top: 20px;
}
.overlay.open #btn-close > span.left {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.overlay.open #btn-close > span.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.overlay .lang {
    margin-top: 15px;
}

.overlay .lang a.english {
    font-size: 18px;
    color: #fff;
    background: url(../images/icon_header_english_flag.jpg) no-repeat left;
    padding: 0px 0px 0px 20px;
}

.overlay .lang a.hungarian {
    font-size: 18px;
    color: #fff;
    background: url(../images/icon_header_hungarian_flag.jpg) no-repeat left;
    padding: 0px 0px 0px 20px;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

/* Homepage - Main image */
#main-image {
    border-top: 12px solid #606060;
    position: relative;
    height: 471px;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1;
}

#main-image picture img {
    width: 100%;
}

#main-image img {
    max-width: none;
}
#main-image .text {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
}
#main-image .text h1 {
    max-width: 620px;
    text-align: center;
    font-size: 62px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1px;
    line-height: 31px;
    margin: 0px 0px 0px 70px;
}
#main-image .text h1 span {
    display: block;
}

/*#main-image .text h1 span.top{ font-weight: 400; font-size: 24px; margin: 0px 0px 16px; }*/
#main-image .text h1 span.top {
    font-size: 20px;
    font-weight: 300;
    margin: 0px 0px 16px;
}
#main-image .text h1 span.top img {
    margin: 13px 5px 0px;
}
#main-image .text h1 span.small {
    font-size: 20px;
    font-weight: 300;
    margin: 22px 0px 0px;
}
#main-image .works {
    max-width: 600px;
    text-align: center;
    margin: 20px 0 0 70px;
}

/* Homepage */
.title {
    margin: 0px 0px 40px;
}
.title h2 {
    font-size: 28px;
    font-weight: 300;
    margin: 0px 0px 5px;
}
.title h2 span {
    font-weight: 700;
}
.title p {
    color: #323232;
    font-size: 14px;
    font-weight: 500;
}

/* Homepage - web */
#web {
    position: relative;
    background: #fff;
    z-index: 1000;
    padding: 65px 0px;
    margin-top: 363px;
}
#web .wrapper {
    display: flex;
    justify-content: space-between;
}
#web .wrapper .image,
#web .wrapper .text {
    width: 48.72%;
}
#web .wrapper .image {
    text-align: center;
}
#web .wrapper .text h2 {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0px 0px 20px;
}
#web .wrapper .text p {
    margin: 0px 0px 3px;
    line-height: 23px;
}
#web .button {
    margin: 20px 0px 0px;
}

/* Homepage - About new */
#about-new {
    background: #f0f0f0;
    margin: 363px 0px 0px;
    padding: 70px 0px 40px;
    position: relative;
    z-index: 1000;
}
#about-new .body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#about-new .body .box {
    display: block;
    width: 24%;
    margin: 0px 0px 45px;
}
#about-new .body .box:hover h3 {
    color: #ce5c18;
}
#about-new .body .box h3 {
    display: flex;
    align-items: center;
    margin: 0px 0px 10px;
    color: #000;
}
#about-new .body .box h3 img {
    margin: 0px 15px 0px 0px;
}
#about-new .body .box p {
    line-height: 22px;
}

/* Homepage - references */
#references {
    background: #f0f0f0;
    position: relative;
    z-index: 1000;
}
#references .title {
    padding: 55px 0px;
    margin: 0px;
}
#references .title h2 {
    margin: 0px;
}
#references .title h2 a {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    font-weight: 700;
}
#references .title h2 a:hover {
    text-decoration: underline;
}
#references .title p {
    color: #1a1a1a;
}
#references .images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
#references .images .item img {
    width: 100%;
}
#references .more {
    padding: 72px 0px;
    text-align: center;
}
#references .more a.button {
}

/* Homepage - customers */
#customers {
    padding: 60px 0px;
    background: #fff;
    position: relative;
    z-index: 1000;
}
#customers .body {
    display: flex;
    flex-wrap: wrap;
}

#customers .body .item {
    width: 20%;
    margin: 0px 0px 20px;
}

/* Homepage - reviews */
#reviews {
    background: url(../images/home_reviews_bg.jpg) no-repeat;
    min-height: 450px;
    position: relative;
    z-index: 1000;
    background-size: cover;
}
#reviews .center {
    position: relative;
}
#reviews .quote {
    position: absolute;
    width: 28px;
    height: 21px;
    top: 140px;
}
#reviews .quote.open {
    background: url(../images/home_open_quote.png) no-repeat left;
    left: 50px;
}
#reviews .quote.close {
    background: url(../images/home_close_quote.png) no-repeat left;
    right: 50px;
}
#reviews .body {
    width: 910px;
    margin: 0 auto;
    padding: 130px 0px 0px;
    position: relative;
}
#reviews .body p,
#reviews .body p a {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 30px;
    text-align: center;
}
#reviews .body p.sign,
#reviews .body p.sign a {
    font-size: 14px;
    color: #b4b4b4;
    font-weight: 300;
    line-height: 22px;
    margin: 30px 0px 27px;
}
#reviews .body .owl-prev,
#reviews .body .owl-next {
    position: absolute;
    width: 41px;
    height: 41px;
    opacity: 0.5;
}
#reviews .body .owl-prev {
    background: url(/resources/images/icon_prev.png);
    left: -100px;
    top: 60%;
}
#reviews .body .owl-next {
    background: url(/resources/images/icon_next.png);
    right: -100px;
    top: 60%;
}

/* Homepage - counter */
#counter {
    position: relative;
    z-index: 900000;
    background: #ce5c18;
}
#counter.white {
    background: #fff;
}
#counter .wrapper {
    padding: 100px 0px;
    display: flex;
}
#counter .wrapper .col {
    width: 25%;
    text-align: center;
}
#counter .wrapper .col span {
    display: block;
    color: #fff;
    font-weight: 500;
}
#counter.white .wrapper .col span {
    color: #323232;
}
#counter .wrapper .col span.number {
    font-size: 75px;
    line-height: 80px;
    font-weight: 700;
}
#counter .wrapper .col span.name {
    font-size: 19px;
}

/* Homepage - blog */
#blog {
    padding: 65px 0px 30px;
    background: #f0f0f0;
    position: relative;
    z-index: 1000;
}
/*.homepage #blog .blog-post{ height: 350px; }
.homepage #blog .text p{ display: none; }*/

/* Blog page */
.blog-page .blog {
    display: flex;
    flex-wrap: wrap;
    background: #f0f0f0;
    padding: 85px 0px;
}
.blog-page .blog a.post-container {
    float: left;
    width: 31.6%;
    margin: 0% 2.6% 2.6% 0%;
}
.blog-page .blog a.post-container:nth-child(3n + 3) {
    margin-right: 0px;
}
.blog-page .blog .more-posts {
    text-align: center;
}

/* Single blog post page */
#single-post .center {
    max-width: 700px;
    padding: 50px 0px;
}
#single-post.full-width .center {
    max-width: 1170px;
}
#single-post.blog-page-post {
    padding: 50px 0px 0px;
}
#single-post.blog-page-post > .wrapper {
    position: relative;
    padding: 0px 235px 50px;
}

#single-post.blog-page-post .toc {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 200px;
    padding: 8px 0px 0px;
}
#single-post.blog-page-post .toc.fixed {
    position: fixed;
    left: 50%;
    margin: 0px 0px 0px -580px;
    top: 30px;
}
#single-post.blog-page-post .toc p {
    font-size: 14px;
    color: #000;
    font-weight: 700;
    margin: 0px 0px 10px;
    line-height: 18px;
}
#single-post.blog-page-post .toc ul {
    list-style: none;
    margin: 0px;
    position: relative;
    margin: 0px 0px 0px 10px;
}
#single-post.blog-page-post .toc ul li {
    line-height: 18px;
    margin: 0px 0px 5px;
    position: relative;
    padding: 0px 0px 0px 10px;
}
#single-post.blog-page-post .toc ul li:before {
    position: absolute;
    left: 0px;
    top: 9px;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    display: inline-block;
}
#single-post.blog-page-post .toc ul li a {
    font-size: 14px;
    color: #ce5c18;
}
#single-post.blog-page-post .toc ul li a:hover {
    color: #a53900;
}
#single-post.blog-page-post .toc ul li a.active {
    color: #777777;
}

#single-post.blog-page-post .post-content {
    max-width: 700px;
}
#single-post.blog-page-post .post-content div.post-toc {
    background: #ededed;
    padding: 35px 30px;
}
#single-post.blog-page-post .post-content div.post-toc > p {
    font-size: 22px;
    color: #3c3c3c;
    line-height: 28px;
    font-weight: 700;
}
#single-post.blog-page-post .post-content div.post-toc ul {
    list-style: none;
    margin: 0px 0px 0px 20px;
}
#single-post.blog-page-post .post-content div.post-toc ul li {
    position: relative;
    line-height: 24px;
    margin: 0px 0px 5px;
    padding: 0px 0px 0px 20px;
}
#single-post.blog-page-post .post-content div.post-toc ul li:before {
    position: absolute;
    left: 0px;
    top: 11px;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    display: inline-block;
}
#single-post.blog-page-post .post-content .post-toc ul li a {
    font-size: 16px;
}

#single-post h1 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
}
#single-post h2 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
    margin: 65px 0px 32px;
}
#single-post h2:first-of-type {
    margin-top: 0px;
}
#single-post h3 {
    font-size: 24px;
    line-height: 33px;
    font-weight: 700;
    margin: 40px 0px 14px;
}
#single-post p {
    margin: 0px 0px 35px;
    font-size: 20px;
    line-height: 34px;
}
#single-post img {
    width: 100% !important;
    height: auto !important;
}
#single-post ul,
#single-post ol {
    margin: 0px 0px 40px 25px;
}
#single-post ul li,
#single-post ol li {
    font-size: 20px;
    line-height: 34px;
    color: #323232;
}
#single-post ul li p,
#single-post ol li p {
    margin: 0px;
}
#single-post ul li ul,
#single-post ol li ol {
    margin: 5px 0px 5px 23px;
}
#single-post a {
    font-size: 20px;
}
#single-post p.date {
    font-size: 14px;
    color: #737373;
}
#single-post figure {
    margin: 50px 0px 0px;
}
#single-post .figcaption {
    margin: -10px 0px 0px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    color: #848484;
    line-height: 24px;
    font-style: italic;
}
#single-post .post-social {
    padding: 33px 0px;
    border-top: 2px solid #dddddd;
    float: left;
    width: 100%;
}
#single-post .post-social h4 {
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    margin: 0px 0px 30px;
}
#single-post .post-social .social-wrapper {
    display: flex;
    align-items: center;
}
#single-post .post-social .number {
    display: inline-block;
    padding: 0px 35px 0px 0px;
    border-right: 2px solid #dddddd;
    text-align: center;
}
#single-post .post-social .number p {
    font-size: 18px;
    color: #323232;
    line-height: 22px;
    margin: 0px;
}
#single-post .post-social .number p:first-child {
    font-size: 55px !important;
    color: #ce5c18;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 55px;
}
#single-post .post-social .buttons {
    padding: 0px 0px 0px 35px;
}
#single-post .post-social a {
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    width: 150px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    font-size: 13px;
    margin: 0px 20px 0px 0px;
}
#single-post .post-social i {
    margin: 0px 10px 0px 0px;
    font-size: 14px;
}
#single-post .post-social a.facebook {
    background: #3a5897;
}
#single-post .post-social a.facebook:hover {
    background: #254684;
}
#single-post .post-social a.twitter {
    background: #24c7ff;
}
#single-post .post-social a.twitter:hover {
    background: #00ade3;
}
#single-post .post-social a.linkedin {
    background: #007ab5;
    margin: 0px;
}
#single-post .post-social a.linkedin:hover {
    background: #0066a0;
}
#single-post.lead h2 {
    font-size: 30px;
    font-weight: 300;
}
#single-post.lead p,
#single-post.lead li,
#single-post.lead a {
    font-size: 17px;
    line-height: 24px;
}

#single-post .offer {
    background: #e7e7e7 url('../images/offer_arrow.png') no-repeat 94% 40%;
    padding: 40px;
    margin: 15px 0px 50px;
    float: left;
    width: 100%;
    border-radius: 6px;
}
#single-post .offer h2 {
    color: #000;
    margin-top: 0px;
}
#single-post .offer p {
    color: #000;
}
#single-post .offer p:last-child {
    margin: 0px;
}
#single-post .offer a {
    display: inline-block;
    border-radius: 10px;
    line-height: 50px;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    background: #ce5c18;
    color: #fff;
    font-size: 20px;
    margin: 0px;
    font-weight: 600;
    line-height: 24px;
}
#single-post .offer a:hover {
    background: #b44600;
}

/* Contact page */
#contact {
    margin: 73px 0px;
}
#contact .cols {
    display: flex;
}
#contact .col:first-child {
    margin-left: 0px;
}
#contact .col {
    width: 370px;
    margin: 0px 0px 30px 30px;
}
#contact .col h2 {
    font-size: 30px;
    font-weight: 400;
    margin: 0px 0px 13px;
}
#contact .col p {
    font-size: 17px;
    color: #444444;
    line-height: 26px;
}
#contact .col1 form {
    margin: 20px 0px 0px;
}
#contact .col1 label {
    font-size: 15px;
    font-weight: 300;
    color: #555555;
    margin: 0px 0px 7px;
    display: block;
}
#contact .col1 input[type='text'],
#contact .col1 textarea {
    border: 1px solid #ce5c18;
    border-radius: 5px;
    height: 30px;
}
#contact .col1 textarea {
    height: 120px;
}
#contact .col1 input[type='submit'] {
    margin: 7px 0px 0px;
    float: right;
}
#contact .col1 input[type='submit'].align-left {
    float: left;
}
#contact .col2 figure {
    margin: 17px 0px 0px;
}
#contact .col3 p,
#contact .col3 a {
    font-size: 16px;
    color: #555555;
}
#contact .col3 a:hover {
    color: #ce5c18;
}
#contact .col3 span.bold {
    font-weight: 700;
    margin: 0px 5px 0px 0px;
}
#contact .col3 p {
    display: flex;
    margin: 0px 0px 12px;
}
#contact .col3 p i {
    display: inline-flex;
    background: #b7b7b7;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    margin: 0px 13px 0px 0px;
}
#contact .col3 .social {
    margin: 39px 0px;
}
#testimonials .wrapper {
    display: flex;
    flex-wrap: wrap;
}
#testimonials .testimonial {
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    padding: 30px 45px;
    position: relative;
    min-height: 250px;
    background: #fff;
}
#testimonials .testimonial p {
    font-size: 14px;
    line-height: 22px;
    color: #5d5d5d;
    font-style: italic;
}
#testimonials .testimonial p.sign {
    font-weight: 600;
    margin: 10px 0px 0px;
    font-style: normal;
}
#testimonials .testimonial p.company {
    font-style: normal;
}
#testimonials .testimonial .quote {
    position: absolute;
    width: 16px;
    height: 14px;
}
#testimonials .testimonial .quote.open {
    background: url(/resources/images/contact_quote_open.png) no-repeat;
    left: 17px;
}
#testimonials .testimonial .quote.close {
    background: url(/resources/images/contact_quote_close.png) no-repeat;
    right: 20px;
    top: 62%;
}
#testimonials .owl-carousel {
    padding: 0px 50px;
}
#testimonials .owl-prev,
#testimonials .owl-next {
    position: absolute;
    width: 38px;
    height: 38px;
    opacity: 0.5;
}
#testimonials .owl-prev {
    background: url(/resources/images/icon_prev_white.png);
    left: 0px;
    top: 40%;
}
#testimonials .owl-next {
    background: url(/resources/images/icon_next_white.png);
    right: 0px;
    top: 40%;
}

#testimonials .owl-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 20px 0px 0px;
}
#testimonials .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ce5c18;
    margin: 0px 5px 0px 0px;
}
#testimonials .owl-dot:last-child {
    margin: 0px;
}
#testimonials .owl-dot.active {
    background: #000;
}

/* Works page */
.works-page {
    padding: 0px 0px 40px;
}
#works {
    padding: 85px 0px;
    background: #f0f0f0;
}
#works .wrapper {
    display: flex;
    flex-wrap: wrap;
}
#works .wrapper .work {
    width: 31.6%;
    margin: 0% 2.6% 2.6% 0%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
#works .wrapper .work .image {
    max-height: 240px;
    overflow: hidden;
    position: relative;
}
#works .wrapper .work .image .layer {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#works .wrapper .work .image .layer img {
    max-width: 70%;
    width: auto;
}
#works .wrapper .work:nth-child(3n + 3) {
    margin-right: 0px;
}
#works .wrapper .work h2 {
    font-size: 17px;
    display: block;
    padding: 15px 25px;
    font-weight: 400;
    height: 85px;
    display: flex;
    align-items: center;
    color: #000000;
}
#works .wrapper .work:hover {
    -webkit-box-shadow: 10px 10px 15px -12px rgba(122, 120, 122, 1);
    -moz-box-shadow: 10px 10px 15px -12px rgba(122, 120, 122, 1);
    box-shadow: 10px 10px 15px -12px rgba(122, 120, 122, 1);
}
#works .wrapper .work:hover h2 {
    color: #ce5c18;
}
#works .wrapper .work:hover .image .layer {
    visibility: visible;
}
#works .wrapper a.load-more-work {
    margin: 0px auto;
}

#our-works {
    background: #f2f2f2;
}
#our-works .row {
    padding: 85px 0px;
    position: relative;
}
#our-works .row:last-child {
    margin: 0px;
}
#our-works .row .center > div {
    float: left;
    width: 48.7%;
}
#our-works .row .center > div.right .image {
    max-height: 480px;
    overflow: hidden;
}
#our-works .row .center > div:first-child {
    margin: 0% 2.6% 0% 0%;
}
#our-works .row p {
    font-size: 17px;
    color: #555555;
    margin: 0px 0px 17px;
}
#our-works .row h2 {
    font-size: 30px;
    font-weight: 300;
    margin: -10px 0px 10px;
}
#our-works .row:nth-child(even) {
    background: #e3e3e3;
}
#our-works .row .center .more-images {
    width: 100%;
    display: flex;
    margin: 40px 0px 0px;
}
#our-works .row .center .more-images .image {
    width: 31.6%;
    margin: 0% 2.6% 0% 0%;
    max-height: 278px;
    overflow: hidden;
    position: relative;
}
#our-works .row .center .more-images .image:last-child {
    margin: 0px;
}

/* Works details page */
.works-details-page .image {
    margin: 0px 0px 60px 0px;
}
.works-details-page .work-details {
    background: #f0f0f0;
}
.works-details-page .actions {
    position: relative;
}
.works-details-page .actions a.prev {
    float: left;
}
.works-details-page .actions a.next {
    float: right;
}
.works-details-page .actions a.all {
    position: absolute;
    left: 48%;
    transform: translateX(-50%);
}

/* About us page */
#about p {
    font-size: 17px;
    color: #555555;
}

#about .about-wrapper {
    display: grid;
    padding: 85px 0px;
    gap: 30px;
}

@media (min-width: 992px) {
    #about .about-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

#about .text p {
    margin-bottom: 25px;
}

#about .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about .numbers {
    display: grid;
    gap: 30px;
    margin-bottom: 85px;
    grid-template-columns: repeat(2, 1fr);
}

#about .numbers .number {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

@media (min-width: 576px) {
    #about .numbers {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    #about .numbers {
        grid-template-columns: repeat(4, 1fr);
    }
    #about .numbers .number {
        flex-direction: row;
        text-align: left;
    }
}

#about .numbers .number .text {
    display: flex;
    flex-direction: column;
}

#about .numbers .number .text span {
    font-weight: 700;
    font-size: 2rem;
    color: #323232;
    line-height: 1;
}

@media (min-width: 576px){
    #about .numbers .number .text span {
        font-size: 3.75rem;
    }
}

#why-us {
    background-color: #f2f2f2;
    padding: 30px 0px;
}

#why-us p {
    font-size: 17px;
    color: #555555;
}

#why-us .title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 40px;
}

#why-us .content {
    display: grid;
    gap: 40px 30px;
}

@media (min-width: 576px) {
    #why-us .content {
        grid-template-columns: repeat(2, 1fr);
    }
}

#why-us .content .item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#why-us .content .item p:first-child {
    display: flex;
    gap: 5px;
    font-weight: 700;
    align-items: center;
}

#why-us .content .item p:first-child::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #ce5c18;
    border-radius: 50%;
    display: block;
}

#mission {
    margin: 85px 0px;
}

#mission .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#mission .mission-wrapper {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    #mission .mission-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

#mission .mission-wrapper h2 {
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 35px;
    line-height: 1;
}

#mission .mission-wrapper p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 30px;
}

#mission .mission-wrapper h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ce5c18;
    margin-bottom: 18px;
}

#mission .mission-wrapper *:last-child {
    margin-bottom: 0px;
}

#history {
    margin: 85px 0px 130px;
}

#history .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#history .history-wrapper {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    #history .history-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

#history .history-wrapper h2 {
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 35px;
    line-height: 1;
}

#history .history-wrapper p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 30px;
}

#reviews-about .center {
    position: relative;
}
#reviews-about .quote {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
#reviews-about .wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 330px;
    border: 1px solid #f2f2f2;
    padding-top: 100px;
    padding-bottom: 40px;
}
#reviews-about .review-about {
    position: relative;
    background: #fff;
    max-width: 861px;
    padding: 0px 32px;
    margin: 0px auto;
}
#reviews-about .review-about p {
    font-size: 16px;
    color: #5d5d5d;
}
#reviews-about .sign {
    margin-top: 10px;
    text-align: right;
}

#reviews-about .sign p {
    font-weight: 600;
}

#reviews-about .sign p:first-child {
    color: #ce5c18;
    font-size: 22px;
    margin-bottom: 5px;
}
#reviews-about .owl-prev,
#reviews-about .owl-next {
    position: absolute;
    width: 37px;
    height: 36px;
}
#reviews-about .owl-prev {
    background: url(/resources/images/review-left.webp);
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
}
#reviews-about .owl-next {
    background: url(/resources/images/review-right.webp);
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
}

@media (min-width: 992px) {
    #reviews-about .owl-prev {
        /* left: -26px; */
    }

    #reviews-about .owl-next {
        /* right: -26px; */
    }

    #reviews-about .owl-prev,
    #reviews-about .owl-next {
        position: absolute;
        width: 54px;
        height: 53px;
    }
}

@media (min-width: 1200px) {
    #reviews-about .owl-prev {
        left: -26px;
    }

    #reviews-about .owl-next {
        right: -26px;
    }
}

#reviews-about .owl-dots {
    position: absolute;
    bottom: -8px;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
}
#reviews-about .owl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ce5c18;
    margin: 0px 5px 0px 0px;
}
#reviews-about .owl-dot:last-child {
    margin: 0px;
}
#reviews-about .owl-dot.active {
    background: #000;
}

#offer.about .wrapper {
    padding: 40px 0px;
}

#offer.about {
    height: auto;
    min-height: 200px;
}

#offer.about .left {
    padding-top: 0px;
}

#offer.about .right {
    padding-top: 20px;
    padding-bottom: 0px !important;
}

#offer.about h2 {
    margin-bottom: 12px;
}

#about-us {
    padding: 85px 0px;
}
#about-us .row {
    margin: 0px 0px 85px;
    position: relative;
}
#about-us .row:last-child {
    margin: 0px;
}
#about-us .row > div {
    float: left;
    width: 48.7%;
}
#about-us .row > div:first-child {
    margin: 0% 2.6% 0% 0%;
}
#about-us .row p {
    font-size: 17px;
    color: #555555;
    margin: 0px 0px 17px;
}
#about-us .row a.button {
    position: absolute;
    bottom: 0px;
}
#about-us .row h2 {
    font-size: 30px;
    font-weight: 300;
    margin: -10px 0px 10px;
}
#staff h2 {
    font-size: 30px;
    margin: 0px 0px 20px;
    font-weight: 400;
    letter-spacing: -1px;
}
#staff .wrapper {
    display: flex;
    flex-wrap: wrap;
}
#staff .wrapper .worker {
    width: 32%;
    margin: 0% 2% 4% 0%;
}
#staff .wrapper .worker .image {
    text-align: center;
}
#staff .wrapper .worker:nth-child(3n + 3) {
    margin-right: 0px;
}
#staff .wrapper .worker p.name {
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    color: #131313;
    margin: 10px 0px 0px;
}
#staff .wrapper .worker p.position {
    text-align: center;
    font-size: 12px;
    font-style: italic;
    color: #525252;
}

.about-us-page #offer {
    margin: 85px 0px 0px;
}

#offer {
    background: #f2f2f2;
    height: 155px;
    margin: 0px 0px 85px;
}
#offer h2 a {
    color: #000;
    font-size: 30px;
    font-weight: 400;
}
#offer h2 a:hover {
    text-decoration: underline;
}
#offer h2 span {
    font-weight: 700;
}
#offer p {
    color: #4e4e4e;
    font-size: 17px;
    line-height: 26px;
}
#offer .left {
    float: left;
    padding: 42px 0px 0px;
}
#offer .left > div {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-direction: column;
}
@media (min-width: 576px) {
    #offer .left > div {
        flex-direction: row;
    }
}
#offer .right {
    float: right;
    padding: 60px 0px 0px;
}

/* Services page */
#service {
    margin: 85px 0px;
}
#service .text div {
    margin: 0px 0px 85px;
}
#service .text div:last-child {
    margin: 0px;
}
#service .text div:after {
    content: '';
    display: table;
    clear: both;
}
#service .text h2 {
    font-size: 30px;
    font-weight: 400;
}
#service .text h3 {
    font-size: 24px;
    font-weight: 400;
}
#service .text > h2 {
    margin: 0px 0px 20px;
}
#service .text > ul {
    margin: 0px 0px 0px 40px;
}
#service .text p,
#service .text ul li,
#service .text ol li,
#service .text ul li p #service .text ol li p {
    color: #4e4e4e;
    font-size: 17px;
    line-height: 26px;
    margin: 0px 0px 20px;
}
#service .text a {
    font-size: 17px;
}
#service .text ul li {
    margin: 0px 0px 10px;
}
#service .text div h2 {
    margin: -10px 0px 20px;
}
#service .text div p,
#service .text div h2,
#service .text div h3,
#service .text div ol,
#service .text div ul {
    float: left;
    display: block;
    width: 65.8%;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 0px 20px;
}
#service .text div ol,
#service .text div ul {
    width: 61.8%;
    margin: 0px 0px 20px 4%;
}
#service .text div h2 {
    margin: -10px 0px 20px;
}
#service .text div ul li ul {
    width: 100%;
    float: none;
    margin: 10px 0px 0px;
}
#service .text div img {
    float: left;
    width: 31.6%;
    margin: 0% 2.6% 0% 0%;
}
#service .text div:nth-child(2n + 2) img {
    float: right;
    margin: 0% 0% 0% 2.6%;
}
#service .lead {
    max-width: 75%;
}

#landing.service-form {
    background: #ce5c18;
    margin: 84px 0;
    padding: 60px 0px;
}
#landing.service-form .center {
    max-width: 570px;
}
#landing.service-form h2 {
    margin: 0px 0px 10px;
}
#landing.service-form h2,
#landing.service-form p {
    color: #fff;
}
#landing.service-form label {
    color: #fff;
}
#landing.service-form input[type='submit'] {
    background: #fff;
    color: #000;
    font-weight: 600;
}
#landing.service-form input[type='submit']:hover {
    color: #ce5c18;
}

/* Tudástár */
#library {
    margin: 84px 0px;
}
#library .lead {
    margin: 0px 0px 84px;
}
#library .lead p {
    color: #444444;
    font-size: 17px;
    line-height: 26px;
}
#library .left {
    float: left;
    width: 48.7%;
    margin: 0% 1.3% 0% 0%;
}
#library .right {
    float: left;
    width: 48.7%;
    margin: 0% 0% 0% 1.3%;
}
#library h2 {
    font-size: 24px;
    font-weight: 400;
    margin: 20px 0px;
}
#library .left h2:first-child,
#library .right h2:first-child {
    margin-top: 0px;
}
#library ul {
    margin: 0px 0px 0px 54px;
}
#library ul li,
#library ul li a {
    color: #555555;
    font-size: 14px;
    line-height: 23px;
    position: relative;
}
#library ul li a {
    color: #ce5c18;
    padding: 0px 10px 0px 0px;
}
#library ul li a:hover {
    text-decoration: underline;
}
#library ul li a:after {
    content: '';
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #ce5c18;
    position: absolute;
    right: 0px;
    top: 6px;
}

/* Landing page */
#landing {
    margin: 84px 0px;
}
#landing .row {
    margin: 0px 0px 84px;
}
#landing .row.no-margin {
    margin: 0px;
}
#landing h2 {
    font-size: 30px;
    font-weight: 400;
    margin: -10px 0px 20px;
}
#landing p {
    font-size: 17px;
    color: #4e4e4e;
    line-height: 26px;
    margin: 0px 0px 20px;
}
#landing ul {
    margin: 0px 0px 20px 25px;
}
#landing ul li {
    font-size: 17px;
    color: #4e4e4e;
    line-height: 26px;
}
#landing ul li p {
    margin: 0px;
}
#landing ul li ul {
    margin: 5px 0px 5px 23px;
}
#landing .left {
    float: left;
    width: 48.7%;
    margin: 0 1.3% 0% 0%;
}
#landing .right {
    float: left;
    width: 48.7%;
    margin: 0 0% 0% 1.3%;
}
#landing label {
    font-size: 15px;
    color: #444444;
    margin: 0px 0px 10px;
    display: block;
}
#landing input[type='text'],
#landing textarea {
    border: 1px solid #cccccc;
    border-radius: 10px;
}
#landing textarea {
    height: 90px;
}

/* Reviews page */
#customer-reviews {
    margin: 84px 0px;
}
#customer-reviews .center {
    max-width: 700px;
}
#customer-reviews .review {
    position: relative;
    background: #f8f8f8;
    border: 1px solid #e6e6e6;
    padding: 35px 50px;
    font-size: 17px;
    color: #555555;
}
#customer-reviews .review p {
    font-size: 17px;
    color: #555555;
    display: inline;
    font-style: italic;
}
#customer-reviews .review .apostrof {
    position: absolute;
    width: 19px;
    height: 13px;
    background: url(/resources/images/icon_apostrof.png);
    top: 16px;
    left: 16px;
}
#customer-reviews .review .arrow {
    position: absolute;
    width: 15px;
    height: 9px;
    background: url(/resources/images/icon_arrow.png);
    bottom: -9px;
    left: 20px;
}
#customer-reviews .author {
    margin: 20px 0px 40px;
}
#customer-reviews .author {
    font-size: 14px;
    padding: 0px 0px 0px 23px;
}
#customer-reviews .author img {
    margin: 3px 10px 0px 0px;
}

/* Sitemap */
#sitemap {
    margin: 84px 0px;
}
#sitemap .left {
    float: left;
    width: 100%;
}
#sitemap .right {
    float: left;
    width: 50%;
    margin: 0% 0% 0% 16%;
}
#sitemap .left ul li {
    display: block;
    position: relative;
    line-height: 24px;
}
#sitemap .left ul li,
#sitemap .left ul li a {
    color: #4e4e4e;
    font-size: 17px;
    line-height: 26px;
}
#sitemap .left ul li a {
    display: block;
    padding: 8px 0px 8px 20px;
    border-bottom: 1px solid #ededde;
}
#sitemap .left ul li a:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #333;
    margin: 9px 0 0 -12px;
    position: absolute;
}
#sitemap .left ul li a:hover {
    background: #eee;
}
#sitemap .left ul li ul {
    margin: 0px 0px 0px 20px;
}
#sitemap .right h2 {
    font-size: 30px;
    font-weight: 300;
    margin: 0px 0px 20px;
}
#sitemap .right p,
#sitemap .right ul {
    color: #4e4e4e;
    font-size: 17px;
    line-height: 26px;
}
#sitemap .right ul {
    margin: 20px 0px;
}
#sitemap .right ul li {
    padding: 0px 0px 0px 25px;
    position: relative;
    list-style: none;
    margin: 5px 0px;
}
#sitemap .right ul li:before {
    font-family: FontAwesome;
    content: '\f00c ';
    font-size: 14px;
    color: #ce5c18;
    position: absolute;
    left: 0px;
}

/* Search page */
#search-results {
    margin: 84px 0px;
}
#search-results h2 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
}
#search-results p {
    font-size: 14px;
    color: #555;
    margin: 5px 0px 0px;
}
#search-results form {
    margin: 40px 0px;
    max-width: 600px;
}
#search-results form input[type='text'] {
    width: 100%;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    color: #000;
    padding: 0 0 0 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
}
#search-results form input[type='submit'] {
    top: 12px;
}
#search-results h3.result-num {
    font-size: 22px;
    color: #555;
    margin: 0px 0px 20px;
    font-weight: 500;
}
#search-results .result {
    padding: 20px 0px;
    border-bottom: 1px dotted #e2e2e2;
}
#search-results .result h3 a {
    font-size: 17px;
    color: #555;
    margin: 0px 0px 20px;
    font-weight: 500;
}
#search-results .result h3 a:hover {
    text-decoration: underline;
}
#search-results .result p.date {
    color: #888;
    font-size: 11px;
    font-weight: 400;
    margin: 5px 0px 0px;
}
#search-results .pager {
    margin: 84px auto 0px auto;
}

/* 404 page */
#error {
    margin: 84px 0px;
}
#error .wrapper {
    display: flex;
    align-items: center;
}
#error .left {
    float: left;
    width: 31.6%;
    margin: 0% 2.6% 0% 0%;
}
#error .right {
    float: left;
    width: 65.8%;
}
#error .right h2 {
    font-size: 22px;
    font-weight: 400;
    margin: 0px 0px 15px;
}
#error .right ul {
    margin: 0px 0px 0px 21px;
}
#error .right ul li {
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0px;
}
#error .right ul li:last-child {
    border: none;
}
#error .right a {
    font-size: 14px;
    color: #444444;
}
#error .right a:hover {
    color: #ce5c18;
}

/* Page parts */

/* Blog post */
#blog .body.wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#blog .post-container {
    width: 31%;
    margin: 0px 0px 35px;
}
.blog-post {
    height: 515px;
    background: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.blog-post:hover {
    -webkit-box-shadow: 10px 10px 15px -12px rgba(122, 120, 122, 1);
    -moz-box-shadow: 10px 10px 15px -12px rgba(122, 120, 122, 1);
    box-shadow: 10px 10px 15px -12px rgba(122, 120, 122, 1);
}
.blog-post:hover .text h3 {
    color: #ce5c18;
}
.blog-post:hover .image .layer {
    visibility: visible;
}
.blog-post .image {
    height: 205px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: flex-start;
}
.blog-post .image .layer {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: absolute;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-post .image .layer img {
    max-width: 70%;
    width: auto;
}
.blog-post .text {
    padding: 32px 30px 25px;
}
.blog-post .text h3 {
    margin: 0px 0px 10px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.blog-post .text p {
    color: #444444;
    font-size: 15px;
    line-height: 24px;
}
.blog-post .text .more {
    color: #cf6120;
    font-size: 15px;
    display: block;
    position: absolute;
    bottom: 20px;
}

/* Newsletter */
#newsletter {
    background: #0b1e2c;
    text-align: center;
    padding: 40px 0px;
    max-width: 700px;
}
#newsletter h3 {
    font-size: 28px;
    color: #fff;
    font-weight: 300;
    margin: 0 0 20px;
}
#newsletter p {
    color: #fff;
    font-weight: 300;
}
#newsletter form input[type='email'] {
    height: 45px;
    width: 260px;
    margin: 20px 0px 0px;
    border-radius: 5px;
    border: none;
    padding: 0px 0px 0px 20px;
    border-radius: 25px;
}
#newsletter .error-message {
    position: relative;
    bottom: auto;
    right: auto;
    font-size: 13px;
}
#newsletter ::-webkit-input-placeholder {
    font-size: 15px;
    color: #999999;
}
#newsletter ::-moz-placeholder {
    font-size: 15px;
    color: #999999;
}
#newsletter :-ms-input-placeholder {
    font-size: 15px;
    color: #999999;
}
#newsletter :-moz-placeholder {
    font-size: 15px;
    color: #999999;
}

/* Author */
#author {
    border-top: 2px solid #dddddd;
    max-width: 700px;
}
#author .wrapper {
    display: flex;
}
#author .wrapper .image {
    width: 21.43%;
    text-align: center;
}
#author .wrapper .image img {
    max-width: 152px;
}
#author .wrapper .content {
    width: 78.57%;
    padding: 0px 0px 0px 20px;
}
#author .wrapper .content p:first-child {
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    margin: 0px 0px 11px;
}
#author .wrapper .content p {
    font-size: 15px;
    line-height: 24px;
    margin: 0px;
}

/* Subpages meta - Title, breadcrumb */
#meta {
    background: #171717;
    border-bottom: 5px solid #cccccc;
}
#meta h1 {
    float: left;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    min-height: 115px;
    display: flex;
    align-items: center;
    position: relative;
}
#meta h1 span {
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ce5c18;
    left: 0px;
    bottom: -5px;
}
#meta #breadcrumb {
    float: right;
    height: 115px;
    display: flex;
    align-items: center;
    padding: 0px 55px 0px 0px;
}
#meta #breadcrumb,
#meta #breadcrumb span,
#meta #breadcrumb a {
    font-size: 14px;
    font-weight: 300;
}
#meta #breadcrumb,
#meta #breadcrumb span {
    color: #999999;
}
#meta #breadcrumb span {
    margin: 0px 10px;
}

.single-post-page #meta {
    text-align: center;
}
.single-post-page #meta .wrapper {
    display: flex;
    min-height: 215px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.single-post-page #meta h1 {
    float: none;
    justify-content: center;
    font-weight: 400;
    display: block;
    min-height: 0px;
    letter-spacing: -0.1px;
}
.single-post-page #meta p.date {
    font-size: 14px;
    color: #cccccc;
    margin: 10px 0px 0px;
}

/*
.single-post-page .post-container:first-child #meta{ background: #171717; }
.single-post-page .post-container:first-child #meta *{ color: #fff; }
.single-post-page .post-container #meta{ background: none; border: none; }
.single-post-page .post-container #meta *{ color: #000; }
*/

/* Pager */
.pager {
    display: flex;
    justify-content: center;
    margin: 40px 0px 0px;
    width: 100%;
}
.pager a,
.pager .active {
    display: block;
    font-size: 15px;
    color: #cf6120;
    background: #fff;
    padding: 8px 16px;
    border: 1px solid #ddd;
    margin-left: -1px;
}
.pager a:hover {
    background: #c15513;
    color: #fff;
}
.pager .active {
    color: #fff;
    background: #cf6120;
}
.pager .gap {
    font-size: 15px;
    color: #cf6120;
    background: #fff;
    padding: 8px 16px;
    border: 1px solid #ddd;
    margin-left: -1px;
}
.pager a.disabled {
    color: #ccc;
    cursor: default;
}

/* Social media icons */
.social {
    margin: 18px 0px 0px;
}
.social i {
    display: inline-flex;
    background: #b7b7b7;
    color: #fff;
    border-radius: 50%;
    font-size: 19px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin: 0px 5px 0px 0px;
}
.social i:hover {
    background: #b44600;
}

/* AdWords landing oldal */
header.adwords {
    padding: 20px 0px;
}
header.adwords .logo {
    margin: 0px;
}
header.adwords #top-info {
    padding: 0px;
    margin: 8px 0px 0px;
}
header.adwords #top-info span {
    color: #000;
}
header.adwords #top-info .offer-button a {
    font-size: 16px !important;
    height: 45px;
    line-height: 45px;
    padding: 0px 55px;
}
.adwords-page #main-image {
    height: 471px;
}
.adwords-page #main-image .works a {
    font-size: 16px !important;
    height: 45px;
    line-height: 45px;
    padding: 0px 55px;
}
.adwords-page #main-image .text h1,
.adwords-page #main-image .works {
    max-width: 830px;
    margin-left: 0px;
}

.adwords-page #customers {
    margin: 373px 0px 0px;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.adwords-page #customers.nomargin {
    margin: 0px;
}

.adwords-page #testimonials,
.adwords-page #contact {
    position: relative;
    background: #fff;
    z-index: 9000000;
    margin: 0px;
}
.adwords-page #testimonials {
    padding: 75px 0px 60px;
    background: #f0f0f0;
}

.adwords-page #testimonials .owl-item {
    height: 360px;
}

.adwords-page #testimonials .testimonial {
    height: 100%;
    padding: 40px 45px 0px 45px;
}

.adwords-page #testimonials .testimonial .rating {
    text-align: center;
    margin: 0px 0px 20px;
}

.adwords-page #testimonials .testimonial .rating img {
    display: inline-flex;
    width: 23px;
}

.adwords-page #testimonials .testimonial p {
    color: #000;
}

.adwords-page #testimonials .testimonial p.sign {
    position: absolute;
    bottom: 20px;
    right: 0px;
    left: 0px;
    text-align: center;
}

.adwords-page #testimonials .testimonial p.sign:before {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    margin: 0px auto 15px;
    background: #6b6b6b;
}

.adwords-page #testimonials .testimonial p.sign .name {
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
}

.adwords-page #testimonials .owl-prev,
.adwords-page #testimonials .owl-next {
    background: url('../images/icon_prev_orange.png');
    width: 41px;
    height: 41px;
    opacity: 1;
}

.adwords-page #testimonials .owl-dots {
    margin: 60px 0px 0px;
}

.adwords-page #testimonials .owl-next {
    transform: rotateY(180deg);
}

#testimonials .testimonial .quote.close {
    position: relative;
    right: auto;
    top: auto;
    float: right;
    margin-right: -20px;
}

.adwords-page .black-cta {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    position: relative;
    z-index: 9000000;
}

.adwords-page .black-cta .button {
    width: 360px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    max-width: 90%;
}

.adwords-page #contact {
    padding: 75px 0px 32px;
}
.adwords-page #references .title h2 {
    font-size: 28px;
    font-weight: 300;
    color: #000;
    font-weight: 700;
}
.adwords-page .about-new {
    background: #f0f0f0;
    margin: 0px;
    padding: 70px 0px 40px;
    position: relative;
    z-index: 1000;
}
.adwords-page .about-new .body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.adwords-page .about-new .body .box {
    display: block;
    width: 24%;
    margin: 0px 0px 45px;
}
.adwords-page .about-new .body .box:hover h3 {
    color: #000;
}
.adwords-page .about-new .body .box h3 {
    display: flex;
    align-items: center;
    margin: 0px 0px 10px;
    color: #000;
}
.adwords-page .about-new .body .box h3 img {
    margin: 0px 15px 0px 0px;
}
.adwords-page .about-new .body .box p {
    line-height: 22px;
    color: #000;
}
.adwords-page .about-new .number-icon {
    width: 40px;
    height: 40px;
    background: #ce5c18;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    margin: 0px 15px 0px 0px;
}
.adwords-page #contact .col h2 {
    font-weight: 700;
    font-size: 28px;
}
.adwords-page #contact .col p,
.adwords-page #contact .col3 p,
#contact .col3 a {
    color: #000;
}
.adwords-page #contact .col1 label {
    color: #000;
    font-weight: 400;
}
.adwords-page .white-bg {
    background: #fff !important;
}
.adwords-page .gray-bg {
    background: #f0f0f0 !important;
}
.adwords-page .title-wrapper {
    position: relative;
    z-index: 90000;
    background: #ce5c18;
    padding: 56px 0px;
}
.adwords-page .title-wrapper .title,
.adwords-page .title-wrapper .title h2 {
    margin: 0px;
}
.adwords-page .title-wrapper .title h2 {
    color: #fff;
}

#ad-works {
    position: relative;
    z-index: 90000;
    padding: 75px 0px 32px;
}
.adwords-works .left {
    float: left;
    width: 48.7%;
    margin: 0% 2.6% 0% 0%;
}
.adwords-works .left h2 {
    color: #000;
    font-weight: 700;
    font-size: 21px;
    margin: 0px;
}
.adwords-works .right {
    width: 48.7%;
    float: left;
}
.adwords-works .right .image {
    max-height: 480px;
    overflow: hidden;
}
.adwords-works p {
    font-size: 17px;
    color: #000;
    margin: 0px 0px 17px;
}
.adwords-works h2 {
    font-size: 30px;
    font-weight: 300;
    margin: -10px 0px 10px;
}
.adwords-works .owl-dots {
    display: flex;
    justify-content: center;
    margin: 32px 0px 0px;
}
.adwords-works .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ce5c18;
    margin: 0px 5px 0px 0px;
}
.adwords-works .owl-dots .owl-dot:last-child {
    margin: 0px;
}
.adwords-works .owl-dots .owl-dot.active {
    background: #000;
}
.adwords-works .owl-nav > div {
    position: absolute;
    width: 41px;
    height: 41px;
    top: 38%;
    background: url('../images/icon_prev_orange.png');
}
.adwords-works .owl-nav .owl-prev {
    left: -80px;
}
.adwords-works .owl-nav .owl-next {
    right: -80px;
    transform: rotateY(180deg);
}
#read-about-us {
    padding: 30px 0px 60px;
    background: #fff;
    position: relative;
    z-index: 1000;
}
#read-about-us .body {
    display: flex;
    flex-wrap: wrap;
}
#read-about-us .body .item {
    width: 20%;
    margin: 0px 0px 20px;
}
#custom-dev {
    margin: 373px 0px 0px;
}
.two-col {
    position: relative;
    background: #fff;
    z-index: 900000;
    padding: 65px 0px;
}
.two-col h2 {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    font-weight: 700;
    margin: 0px 0px 20px;
    max-width: 50%;
}
.two-col .wrapper {
    display: flex;
    justify-content: space-between;
}
.two-col .wrapper .image,
.two-col .wrapper .text {
    width: 48.72%;
}
.two-col .wrapper .image {
    text-align: center;
}
.two-col .wrapper .text.no-title {
    padding: 63px 0px 0px;
}

.two-col .wrapper .text p {
    margin: 0px 0px 17px;
    font-size: 17px;
    color: #000;
}

.two-col .wrapper .text p a {
    font-size: 17px;
}

.two-col .wrapper .text ul {
    margin: 0px 0px 17px 30px;
}

.two-col .wrapper .text ul li {
    font-size: 17px;
    color: #000;
    margin: 0px 0px 5px;
}

#footer-top.adwords {
    padding: 100px 0px;
}
#footer-top.adwords .clutch {
    margin: 5px 15px 0px 0px !important;
    float: right;
}
#footer-top.adwords .footer-logo img,
#footer-top.adwords .clutch img {
    margin: 0px !important;
}
#footer-top.adwords .footer-logo {
    margin: 8px 0px 0px;
}
#footer-top.adwords img.google {
    margin: 15px 0px 0px;
}
#footer-top.adwords .col.services {
    text-align: center;
}

/* Footer */
footer {
    position: relative;
    z-index: 1000;
}
#footer-top {
    background: #121214;
    padding: 55px 0px;
}
#footer-top .columns {
    display: flex;
    justify-content: space-between;
}
#footer-top .columns .col {
    width: 33.33%;
    padding: 0px 50px;
}
#footer-top .columns .col p {
    color: #9e9e9e;
    font-size: 15px;
    line-height: 24px;
}
#footer-top .columns .col a {
    color: #fff;
    font-size: 15px;
}
#footer-top .columns .col a:hover {
    color: #cf6120;
}
#footer-top .columns .col h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    margin: 0px 0px 20px;
}
#footer-top .columns .col.about img {
    margin: 0px 0px 10px;
    vertical-align: top;
}
#footer-top .columns .col.services ul {
    margin: 0px 0px 0px 18px;
}
#footer-top .columns .col.services ul li {
    margin: 0px 0px 5px 0px;
    font-size: 15px;
}
#footer-top .columns .col.services ul,
#footer-top .columns .col.services li a {
    color: #9e9e9e;
}
#footer-top .columns .col.services li a:hover {
    color: #cf6120;
}
#footer-top .columns .col.contact p {
    margin: 0px 0px 10px;
}
#footer-top .columns .col.contact p i {
    min-width: 20px;
}
#footer-top .columns .col.contact p a {
    font-size: 15px;
}
#footer-bottom {
    background: #0c0c0c;
    color: #9e9e9e;
    font-size: 13px;
    padding: 34px 0px;
}
#footer-bottom span {
    color: #9e9e9e;
    margin: 0px 10px;
}
#footer-bottom a {
    color: #fff;
    font-size: 13px;
}
#footer-bottom a:hover {
    color: #cf6120;
}
#footer-bottom .left {
    float: left;
}
#footer-bottom .right {
    float: right;
}

#footer-adwords #footer-bottom .left {
    float: none;
    text-align: center;
}

.grecaptcha-badge {
    display: none !important;
}
