/**
 * Variables
 */
 :root {
    --body-bg: #000046;
    --header-bg: #000046;
    --content-bg: #000046;
    --text-color: #ffffff;
    --sidebar-link-color: #ffffff;
    --border-color: #ffffff;
    --pink: #f26c4f;
    --violet: #f4399e;
    --pink-gradient: linear-gradient(to right, #f26c4f, #f4399e);
    --circle-color: #00c20a;
  }

/**
 * Fonts
 */
/* open-sans-regular - latin */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: local("Open Sans Regular"), local("OpenSans-Regular"), url("../fonts/open-sans.woff2") format("woff2"), url("../fonts/open-sans.woff") format("woff");
  }
  
  /* roboto-regular - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local("Roboto"), local("Roboto-Regular"), url("../fonts/roboto.woff2") format("woff2"), url("../fonts/roboto.woff") format("woff");
  }
  
  /* roboto-700 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/roboto-bold.woff2") format("woff2"), url("../fonts/roboto-bold.woff") format("woff");
  }


  html {
    line-height: 1.7;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    height: auto;
    min-height: 100%;
    margin: 0 auto;
    padding: 0 0px;
    font-family: -system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9em;
    font-weight: 400;
    line-height: 1.7;
    background: #000046;
    background-image:url(https://inetworks.hu/themes/custom/iw/images/bkg.png) ;
    background-repeat: no-repeat;
    background-position: -500px -500px;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }


/*
 * Fields and regions.
 */
 article,
 aside,
 details,
 figcaption,
 figure,
 footer,
 hgroup,
 main,
 menu,
 nav,
 section {
   display: block;
 }
 
 summary {
   display: list-item;
   cursor: pointer;
   color: #a1a1a1;
   color: #a1a1a1;
   color: var(--text-color);
 }
 
 template,
 [hidden] {
   display: none;
 }



/* #block-mainnavigation-2
{
    text-align: right;
} */

 .region-content{
    min-height:200px;
    display: inline-block;
 width:100%;
  }
 
 /**
   * Typography
   ------------------------------------*/
 /* Typography -> Headings. */
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
   font-family: 'Roboto', sans-serif;
   font-weight: 400;
   font-style: normal;
   line-height: 1.6;
   margin: 0;
   color: #ffffff;
 }
 
 h1 {
   font-size: 2.2em;
 }
 
 h2 {
   font-size: 2em;
 }
 
 h3 {
   font-size: 1.6em;
 }
 
 h4 {
   font-size: 1.2em;
 }
 
 h5 {
   font-size: 1em;
 }
 
 h6 {
   font-size: 1em;
 }
 
 /* Typography -> Paragraph */
 p {
   margin: 0 0 1em 0;
 }
 
 /* Typography -> Links. */
 a {
   color: #f59518;
   background-color: transparent;
   text-decoration: none;
   -webkit-transition: color 0.4s ease;
   transition: color 0.4s ease;
 }
 
 a:active,
 li a.active {
   color: #f26c4f;
   color: var(--pink);
 }
 
  a:hover,
 a:visited:hover {
   color: #ffffff;
 } 
 
 a:active,
 a:hover,
 a:focus {
   text-decoration: none;
   border: 0;
   outline: 0;
 }

 /* Typography -> code tags */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
  padding: 2px 8px;
  background: #020312;
  background: var(--header-bg);
  margin: 0;
}

pre {
  overflow: auto;
  margin-bottom: 1em;
}

/* Typography -> Font styles */
b,
strong {
  font-weight: bolder;
  color: #ffffff;
}

em {
  font-style: normal;
  color: #f26c4f;
  color: var(--pink);
}

dfn,
cite {
  font-style: italic;
}

del {
  text-decoration: line-through;
}

small {
  font-size: 80%;
}

big {
  font-size: 125%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}

mark {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
  text-shadow: none;
}

/* Typography -> Address */
address {
  margin: 0 0 1em 0;
  font-style: italic;
}

/* Typography -> Abbreviation */
acronym[title], abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

abbr,
acronym {
  cursor: help;
}

/* Typography -> Blockquote */
blockquote {
  position: relative;
  margin: 0.6em 0 1em 0;
  padding: 1em;
  background: #020312;
  background: var(--header-bg);
  border-left: 4px solid #f26c4f;
  border-left: 4px solid var(--pink);
}

blockquote > :last-child {
  margin-bottom: 0;
}

/**
  * Media
  */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
a img {
  max-width: 100% !important;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-style: none;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border: 0;
}

.align-left {
  margin: 1em 1em 1em 0;
}

.align-right {
  margin: 1em 0 1em 1em;
}

.align-center {
  margin-top: 1em;
  margin-bottom: 1em;
}

figcaption {
  padding: 4px;
  font-size: 0.8em;
  background: #020312;
  background: var(--header-bg);
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
  text-align: center;
}

.image-field {
  margin: 0 0 1em 0;
}

/**
  * Form.
  */
form {
  margin-bottom: 1em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  position: relative;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  padding: 9px 10px;
  border: 1px solid transparent;
  background: #f59518;
  color: #fff;
  -webkit-appearance: button;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
  border: 1px solid #f59518;
  background: #020312;
  background: var(--header-bg);
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0;
}

button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

input {
  line-height: normal;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  background: transparent;
  color: #a1a1a1;
  color: var(--text-color);
  padding: 10px;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  -webkit-transition: border 0.5s ease-in-out;
  transition: border 0.5s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  border: 1px solid #f26c4f;
  border: 1px solid var(--pink);
  outline: 0;
}

@-webkit-keyframes autofill {
  to {
    color: #a1a1a1;
    color: var(--text-color);
    background: transparent;
  }
}

@keyframes autofill {
  to {
    color: #a1a1a1;
    color: var(--text-color);
    background: transparent;
  }
}

input:-webkit-autofill {
  -webkit-animation-name: autofill;
  animation-name: autofill;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

[type="checkbox"],
[type="radio"] {
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

textarea {
  width: 100%;
  overflow: auto;
  -webkit-transition: border 0.3s linear;
  transition: border 0.3s linear;
  vertical-align: top;
}

/* Animated expanding textarea */
.form-textarea {
  height: 100px;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.form-textarea:focus {
  height: 180px;
}

fieldset {
  margin: 0 0 10px 0;
  padding: 0.35em 0.5em 0.5em 0;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
}

fieldset > :last-child {
  margin-bottom: 0;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

optgroup {
  font-weight: bold;
}

select {
  padding: 4px 0;
  background: var(--body-bg);
  color: #ffffff;
  border: 1px solid var(--border-color);
}

form label {
  color: #ffffff;
}

label[for] {
  cursor: pointer;
}

.page-content input[type="text"],
.page-content input[type="password"],
.page-content input[type="search"] {
  padding: 9px 6px;
  outline: 0;
}

.page-content input {
  max-width: 100%;
}

/* Form -> Drupal form elements */
.form-item {
  margin-bottom: 1em;
}

.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: #f26c4f;
  color: var(--pink);
}

.form-item label {
  display: block;
}

label.option {
  display: inline;
  font-weight: normal;
}

progress {
  vertical-align: baseline;
}

::-webkit-input-placeholder {
  color: #282d38;
  color: var(--border-color);
}

:-moz-placeholder {
  color: #282d38;
  color: var(--border-color);
}

::-moz-placeholder {
  color: #282d38;
  color: var(--border-color);
  opacity: 1;
}

:-ms-input-placeholder {
  color: #282d38;
  color: var(--border-color);
}

/**
  * List.
  */
ul,
ol {
  margin: 0;
  padding: 0 0 0.25em 1em;
  /* LTR */
}

[dir="rtl"] ul,
[dir="rtl"] ol {
  padding: 0 1em 0.25em 0;
}

ol ol,
ul ul {
  margin: 0;
  padding: 0 0 0.25em 1em;
  /* LTR */
}

[dir="rtl"] ol ol,
[dir="rtl"] ul ul {
  padding: 0 1em 0.25em 0;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

[dir="rtl"] ul,
[dir="rtl"] ol {
  padding: 0 1em 0.25em 0;
}

li {
  padding: 4px 0;
}

.node-content li {
  padding: 6px 0;
}

/* Typography -> Definition Lists */
dt {
  color: #ffffff;
  font-weight: 700;
}

dd {
  margin: 0 0 1.2em 0;
}

/**
  * Table.
  */
table {
  width: 100%;
  margin-bottom: 1.2em;
  border-spacing: 0;
  border-collapse: collapse;
}

th,
tr,
td {
  vertical-align: middle;
}

th {
  margin: 0;
  padding: 5px;
  background: #020312;
  background: var(--header-bg);
  color: #fff;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
  text-align: left;
  text-shadow: none;
}

td {
  padding: 5px;
  border: 1px solid #282d38;
  border: 1px solid var(--border-color);
}

/**
  * HTML elements
  */
hr {
  clear: both;
  width: 100%;
  height: 2px;
  background: #282d38;
  background: var(--border-color);
  border: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
}

/**
  * Default box sizing.
  */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:after,
*::after,
*:before,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/**
  * Misc.
  */
::-moz-selection {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #f26c4f;
  background: var(--pink);
  color: #fff;
  text-shadow: none;
}

/* Layout
----------------------------------- */
.container {
    position: relative;
    width: 100%;
    max-width: 575px;
    margin: 0 auto;
    padding: 0 10px;
  }
  
  #main-wrapper {
    position: relative;
    width: 100%;
    padding: 2em 0;
  }
  
  .main-container {
    position: relative;
    display: -ms-grid;
    display: grid;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  
  .no-sidebar .main-container,
  .sidebar-left .main-container,
  .sidebar-right .main-container,
  .two-sidebar .main-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  
  #main {
    width: 1200px;
  max-width: calc(100% - 20px);
  margin: 0 auto;
  padding: 0 10px;
  /*   -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
 */  }
  
  #sidebar-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0;
  }
  
  #sidebar-right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding: 0;
  }
  
  /* columns */
  .flex-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
  
  .row {
    width: 100%;
    clear: both;
    margin-bottom: 1em;
  }
  
  .section {
    width: 100%;
    clear: both;
    padding: 1.4em 0;
  }
  
  .full {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    margin: 0;
  }
  
  .item {
    margin: 0 0 2em 0;
    padding: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }
/* Footer
--------------------------------------*/
.footer {
    width: 100%;
    background: #3C486D;
  }
  
  #footer-top,
  #footer-blocks,
  #footer-bottom,
  #footer-bottom-last {
    position: relative;
    width: 100%;
    padding-top: 30px;
  }
  
.footer--top
{
  width: 1200px;
  max-width: calc(100% - 20px);
  margin: 0 auto;
  padding: 10px 10px;
  
}
  
.footer--top div {
    display: inline-block;
    min-width: 24%;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-top: 0px;
    vertical-align: top;
}

.footer--bottom{
  background: #000046;
}

.region-footer-first ,
.region-footer-second,
.region-footer-third {
/*text-align: center;*/
}

.region-footer-bottom
{
padding: 5px;
text-align: center;
}

.region-navigation {
    display: inline-block;
    float:right;
    padding-top: 5px;
}

@media only screen and (max-device-width: 768px) {
 /* Styles */
  .region-navigation {
  display: inline-block;
  float:left;
  padding-top: 5px;
}

.footer--top div {
  display: inline-block;
  width: 100%;
  
}
}

header {
  width: 1200px;
  max-width: calc(100% - 20px);
  
    /*width:100%;*/
    min-height: 140px;
    margin: 0 auto;
    padding: 0 10px;
}

.region-branding{
    display: inline-block;
}

.language-switcher-language-url li
{
    display:inline;
}
.language-switcher-language-url ul
{
    padding: 0px;
}

.responsive-imi {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

#block-views-block-banner-block-1 {
  display:inline-block;
  
  float:right;
 

}

.node__content
{
  max-width: 800px;
  min-height: 320px;
}

.site-logo img
{
max-width: 350px !important; 
}

.footer--top ul.menu
 {
  margin-left: 0px;
}

.footer--top li.menu-item
 {
 
  border-bottom: 1px solid #000046;
}

.footer--top td
{

  border:none;
  padding: 0px;
}

.view-display-id-block_1
{
width:325px;


}