@charset "UTF-8";
/**
Theme Name: Adatvédelem jofogas
Author: SCMH
Author URI: http://jofogas.hu/
Description: Theme for jofogas privacy pages
Version: 0.1
*/
/* Basic */
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none; }

body {
  font-size: 14px;
  color: #676767; }

a {
  font-weight: bold;
  color: #336699; }

object {
  pointer-events: none; }

.full_box {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat; }
  .full_box:after {
    clear: both; }

.container {
  max-width: 940px;
  margin: 0 auto;
  padding: 20px; }
  .container:after {
    clear: both; }

.ribbon-right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  background-color: #18c662;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, calc(100% - 15px) 50%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 15px) 50%, 100% 100%, 0% 100%);
  padding: 0 32px 0 20px; }

.ribbon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  background-color: #2b4156;
  color: #ffffff;
  font-family: 'BerlinSansBold1', 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, calc(100% - 15px) 50%, 100% 100%, 0% 100%, 15px 50%);
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 15px) 50%, 100% 100%, 0% 100%, 15px 50%);
  padding: 0 45px;
  text-align: center; }
  @media screen and (max-width: 480px) {
    .ribbon {
      height: 60px;
      -webkit-clip-path: polygon(0% 0%, 100% 0%, calc(100% - 25px) 50%, 100% 100%, 0% 100%, 25px 50%);
      clip-path: polygon(0% 0%, 100% 0%, calc(100% - 25px) 50%, 100% 100%, 0% 100%, 25px 50%); } }

.scroll-top-button {
  background-color: #336699;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  position: fixed;
  bottom: 10px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer; }
  .scroll-top-button i {
    font-size: 30px; }

@font-face {
  font-family: 'BerlinSansBold1';
  src: url('./font/BerlinSansFBDemi-Bold-1.ttf') format('truetype'); }

body {
  font-family: Arial, sans-serif; }

/* Header */
.hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }

.hero-big {
  height: 300px; }

.hero-small {
  height: 100px; }

.hero-home {
  background-image: url("./elements/hero.svg");
  background-position: center center;
  background-repeat: no-repeat; }

.hero-texts {
  position: absolute;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 10px; }
  .hero-texts .hero-title {
    font-family: 'BerlinSansBold1', 'Open Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #2b4156; }
    @media screen and (max-width: 560px) {
      .hero-texts .hero-title {
        font-size: 30px; } }
    .hero-texts .hero-title a {
      font-weight: 800;
      color: #2b4156; }
  .hero-texts h2 {
    font-size: 22px;
    color: #2b4156;
    font-weight: normal; }
    @media screen and (max-width: 560px) {
      .hero-texts h2 {
        font-size: 19px; } }

.hero-texts-home {
  max-width: 520px; }

.hero-texts-404 {
  padding: 0 257px;
  height: 300px;
  width: 520px;
  display: flex;
  justify-content: center;
  background-image: url("./elements/hero-404.svg");
  background-position: right bottom;
  background-repeat: no-repeat; }
  @media screen and (max-width: 520px) {
    .hero-texts-404 {
      width: auto;
      padding: 0;
      background-image: none; } }

.divider-small {
  width: 50px;
  height: 1px;
  background-color: #2b4156;
  margin: 30px 0; }
  @media screen and (max-width: 430px) {
    .divider-small {
      margin: 20px 0; } }

.search-container {
  background-color: #3c3c3c;
  padding: 15px;
  text-align: center;
  position: relative;
  height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .search-container h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold; }
  .search-container h4 {
    color: #ffffff;
    font-size: 16px; }
  .search-container form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px; }
    @media screen and (max-width: 530px) {
      .search-container form {
        width: 100%; } }
  .search-container .search-field {
    box-sizing: border-box;
    width: 100%;
    height: 50px;
    padding: 15px;
    font-size: 20px;
    margin-bottom: 15px;
    border: 0;
    border-radius: 5px;
    outline: none; }
  .search-container .search-button {
    width: 140px;
    height: 40px;
    background-color: #ff7330;
    padding: 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 3px;
    border: 0;
    cursor: pointer; }

/* Footer */
.footer_container {
  background-color: #213345;
  color: #6c8fb1; }

.full_box.footer_app_promo {
  background: #fff;
  padding: 0px 15px 20px;
  width: auto; }

.app-suggestor-footer {
  padding: 0 15px; }
  .app-suggestor-footer p {
    margin: 0 0 10px; }
  .app-suggestor-footer__title {
    font-size: 22px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    margin: 0 0 5px;
    line-height: 22px; }
  .app-suggestor-footer__wrapper {
    background: #f5f5f5;
    color: #676767;
    text-align: center;
    padding: 15px 0 30px;
    margin-top: 40px; }
  .app-suggestor-footer__badge {
    margin: 0px 10px; }
    @media only screen and (max-width: 600px) {
      .app-suggestor-footer__badge {
        margin: 10px;
        display: block; } }
    .app-suggestor-footer__badge img {
      height: 40px; }

.footer_services a {
  line-height: 190%;
  font-weight: bold;
  font-size: 12px;
  color: #6c8fb1; }

#footer_barion_card {
  width: 100%; }

.copyright_box {
  font-size: 11px;
  line-height: 140%;
  text-align: justify;
  padding: 15px 20px; }

.sepa {
  margin-top: 20px;
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #2b4156; }

.copyright:after {
  content: "";
  display: table;
  clear: both; }

#jofogas_copyright {
  width: 100px;
  margin-right: 155px;
  float: left; }

.sc_sites, .sc_sites a {
  font-size: 11px;
  color: #6c8fb1;
  line-height: 140%;
  text-align: justify;
  padding-top: 0;
  padding-bottom: 0; }

.sc_sites p {
  margin-top: 20px;
  padding: 5px 0; }

.footer_menu, .footer_menu2 {
  width: calc(100% - 40px);
  padding: 20px;
  overflow: hidden;
  height: 60px;
  text-align: center;
  display: none; }

.footer_menu a, .footer_menu2 a {
  color: #6c8fb1; }

.footer_menu2 {
  margin-bottom: 20px; }

#footer_services, #footer_us {
  color: #6c8fb1;
  border-bottom: 1px solid #ccc;
  cursor: pointer; }

.footer_menu p, .footer_menu2 p {
  padding-top: 20px;
  padding-bottom: 30px;
  font-size: 14px;
  font-weight: bold; }

.footer_menu_change {
  height: 100% !important; }

.footer_menu > :nth-child(1) {
  height: 29px; }

.footer_menu2 > :nth-child(1) {
  height: 29px; }

@media screen and (max-width: 945px) {
  .footer_menu, .footer_menu2 {
    display: block; }
  #f_services {
    display: none; }
  .copyright_box img {
    display: none; }
  .footer_app_promo {
    text-align: center; }
  .jofogas_logo_footer {
    height: 28px;
    margin-right: 0; }
  #footer_services, #footer_us {
    border-bottom: 1px solid #2B4156; }
  .footer_menu, .footer_menu2 {
    padding: 20px 0;
    width: 100%; } }

/* Search */
.search-results b {
  font-weight: bold; }
.search-results .search-result-count {
  margin-bottom: 25px; }
.search-results .search-item {
  padding: 20px 0;
  line-height: 160%; }
  .search-results .search-item h2 > a {
    font-size: 16px;
    margin-bottom: 5px; }

/* Main content */
main.home {
  display: flex;
  align-items: center;
  flex-direction: column; }
  main.home .bubbles {
    margin: 50px 0;
    display: flex; }
    @media screen and (max-width: 768px) {
      main.home .bubbles {
        flex-direction: column; } }
    main.home .bubbles .bubbles-row {
      display: flex; }
      @media screen and (max-width: 360px) {
        main.home .bubbles .bubbles-row {
          flex-direction: column; } }
      main.home .bubbles .bubbles-row + .bubbles-row {
        margin-left: 120px; }
        @media screen and (max-width: 768px) {
          main.home .bubbles .bubbles-row + .bubbles-row {
            margin-left: 0; } }
      main.home .bubbles .bubbles-row .bubble-link {
        display: flex;
        flex-direction: column;
        align-items: center; }
        @media screen and (max-width: 768px) {
          main.home .bubbles .bubbles-row .bubble-link {
            margin-bottom: 40px; } }
        main.home .bubbles .bubbles-row .bubble-link + .bubble-link {
          margin-left: 120px; }
          @media screen and (max-width: 360px) {
            main.home .bubbles .bubbles-row .bubble-link + .bubble-link {
              margin-left: 0; } }
        main.home .bubbles .bubbles-row .bubble-link .bubble-link-icon {
          border-radius: 50%;
          width: 100px;
          height: 100px;
          display: flex;
          justify-content: center;
          align-items: center;
          color: #ffffff;
          margin-bottom: 20px;
          background-color: #336699; }
          main.home .bubbles .bubbles-row .bubble-link .bubble-link-icon i {
            font-size: 40px; }
        main.home .bubbles .bubbles-row .bubble-link .bubble-link-label {
          width: 120px;
          text-align: center;
          font-size: 18px;
          line-height: 1.17; }
  main.home .ribbon-wrapper {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center; }
    main.home .ribbon-wrapper .ribbon-line {
      width: 100%;
      position: absolute;
      border-bottom: 1px solid #2b4156;
      height: 50%;
      margin: 0 auto; }
      @media screen and (max-width: 480px) {
        main.home .ribbon-wrapper .ribbon-line {
          display: none; } }
    main.home .ribbon-wrapper .ribbon-box {
      background-color: #ffffff;
      z-index: 5; }
  main.home .useful-links {
    width: 100%;
    padding: 20px 0 80px 0; }
    main.home .useful-links ul {
      list-style-type: none;
      display: grid;
      grid-template: 1fr/repeat(2, 50%); }
      @media screen and (max-width: 768px) {
        main.home .useful-links ul {
          grid-template: 1fr/1fr;
          text-align: center; } }
      main.home .useful-links ul li {
        padding: 20px 0;
        margin: 0 20px;
        border-bottom: 1px solid #d8d8d8; }
      main.home .useful-links ul .link-left {
        grid-column-start: 1; }
      main.home .useful-links ul .link-right {
        grid-column-start: 2; }
        @media screen and (max-width: 768px) {
          main.home .useful-links ul .link-right {
            grid-column-start: 1; } }

/* Page */
.page-content {
  display: grid;
  grid-template: 60px 1fr/30% 70%;
  margin-bottom: 80px; }
  @media screen and (max-width: 768px) {
    .page-content {
      display: block; } }
  .page-content .page-main-cat {
    grid-area: 1 / 1;
    margin-right: 20px;
    height: 60px; }
    @media screen and (max-width: 768px) {
      .page-content .page-main-cat {
        margin-right: 0;
        height: 60px; } }
    .page-content .page-main-cat a {
      display: block; }
    .page-content .page-main-cat p, .page-content .page-main-cat a {
      border-bottom: 1px solid #d8d8d8;
      text-align: center;
      font-weight: bold;
      padding-bottom: 25px;
      padding-top: 8px; }
  .page-content .page-tree {
    grid-area: 2 / 1;
    padding: 20px 40px 0 20px; }
    @media screen and (max-width: 768px) {
      .page-content .page-tree {
        padding-right: 0;
        padding-bottom: 30px;
        border-bottom: 1px solid #d8d8d8; } }
    .page-content .page-tree li {
      margin-bottom: 20px; }
    .page-content .page-tree .list-item-link {
      color: #336699; }
  .page-content .page-breadcrumb {
    grid-area: 1 / 2;
    border-left: 1px solid #d8d8d8;
    padding-left: 40px;
    height: 60px; }
    @media screen and (max-width: 768px) {
      .page-content .page-breadcrumb {
        border-left: none;
        padding-left: 0;
        padding-top: 20px;
        height: 60px; } }
    .page-content .page-breadcrumb .page-breadcrumb-wrapper {
      padding-top: 4px; }
      @media screen and (max-width: 768px) {
        .page-content .page-breadcrumb .page-breadcrumb-wrapper {
          padding-top: 0; } }
      .page-content .page-breadcrumb .page-breadcrumb-wrapper a, .page-content .page-breadcrumb .page-breadcrumb-wrapper i {
        vertical-align: middle; }
  .page-content .page-article {
    grid-area: 2 / 2;
    border-left: 1px solid #d8d8d8;
    padding-left: 40px; }
    @media screen and (max-width: 768px) {
      .page-content .page-article {
        border-left: none;
        padding-left: 0; } }

/* Article */
article {
  margin-top: 18px; }
  article .aggregate-block {
    margin: 0 0 35px 0; }
  article p {
    margin-bottom: 14px; }
  article h1, article h2, article h3 {
    margin-bottom: 20px;
    font-weight: bold; }
  article p + h1, article p + h2, article p + h3 {
    margin-top: 35px; }
  article h1 {
    font-size: 20px; }
  article h2 {
    font-size: 18px; }
  article h3 {
    font-size: 16px; }
  article b {
    font-weight: bold; }
  article strong {
    font-weight: bold; }
  article em {
    font-style: italic; }
  article ul {
    margin-bottom: 4px;
    margin-left: 20px; }
  article ol {
    margin-bottom: 4px;
    margin-left: 20px; }
  article .article-useful-links {
    margin-left: -20px; }
    @media screen and (max-width: 768px) {
      article .article-useful-links {
        margin-left: 0; } }
    article .article-useful-links p {
      margin: 0; }
    article .article-useful-links .ribbon-right {
      margin: 50px 0 20px -20px; }
      @media screen and (max-width: 768px) {
        article .article-useful-links .ribbon-right {
          margin: 50px 0 20px -20px; } }
    article .article-useful-links ul {
      list-style-type: none; }
      article .article-useful-links ul li {
        margin-bottom: 10px; }

/* Grid */
.grid > :first-child {
  border-left: 0; }

.grid:before, .grid:after {
  content: "";
  display: table;
  clear: both; }

.m1, .m2, .m3, .m4, .m5, .m6, .m7, .m8, .m9, .m10 .m11, .m12 {
  float: left;
  margin-left: auto;
  left: auto;
  right: auto;
  border-left: 20px solid transparent;
  box-sizing: border-box; }

.m-hidden {
  display: none; }

.m1 {
  width: 8.33333%; }

.m2 {
  width: 16.66667%; }

.m3 {
  width: 25%; }

.m4 {
  width: 33.33333%; }

.m5 {
  width: 41.66667%; }

.m6 {
  width: 50%; }

.m7 {
  width: 58.33333%; }

.m8 {
  width: 66.66667%; }

.m9 {
  width: 75%; }

.m10 {
  width: 83.33333%; }

.m11 {
  width: 91.66667%; }

.m12 {
  width: 100%;
  border-left: 0; }

@media screen and (max-width: 800px) {
  .sm1, .sm2, .sm3, .sm4, .sm5, .sm6, .sm7, .sm8, .sm9, .sm10 .sm11, .sm12 {
    border-left: 20px solid transparent; }
  .sm-hidden {
    display: none; }
  .sm1 {
    width: 8.33333%; }
  .sm2 {
    width: 16.66667%; }
  .sm3 {
    width: 25%; }
  .sm4 {
    width: 33.33333%; }
  .sm5 {
    width: 41.66667%; }
  .sm6 {
    width: 50%; }
  .sm7 {
    width: 58.33333%; }
  .sm8 {
    width: 66.66667%; }
  .sm9 {
    width: 75%; }
  .sm10 {
    width: 83.33333%; }
  .sm11 {
    width: 91.66667%; }
  .sm12 {
    width: 100%;
    border-left: 0; } }

@media screen and (max-width: 400px) {
  .xsm1, .xsm2, .xsm3, .xsm4, .xsm5, .xsm6, .xsm7, .xsm8, .xsm9, .xsm10 .xsm11, .xsm12 {
    border-left: 10px solid transparent; }
  .xsm-hidden {
    display: none; }
  .xsm1 {
    width: 8.33333%; }
  .xsm2 {
    width: 16.66667%; }
  .xsm3 {
    width: 25%; }
  .xsm4 {
    width: 33.33333%; }
  .xsm5 {
    width: 41.66667%; }
  .xsm6 {
    width: 50%; }
  .xsm7 {
    width: 58.33333%; }
  .xsm8 {
    width: 66.66667%; }
  .xsm9 {
    width: 75%; }
  .xsm10 {
    width: 83.33333%; }
  .xsm11 {
    width: 91.66667%; }
  .xsm12 {
    width: 100%;
    border-left: 0; } }
