/*Mixin shadow with gradient*/
/*
@mixin  gradient(){
  background: rgba(0,0,0,0.27);
  background: -moz-linear-gradient(top, rgba(0,0,0,0.27) 0%, rgba(10,9,10,0.26) 5%, rgba(10,9,10,0) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,0,0.27)), color-stop(5%, rgba(10,9,10,0.26)), color-stop(100%, rgba(10,9,10,0)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,0.27) 0%, rgba(10,9,10,0.26) 5%, rgba(10,9,10,0) 100%);
  background: -o-linear-gradient(top, rgba(0,0,0,0.27) 0%, rgba(10,9,10,0.26) 5%, rgba(10,9,10,0) 100%);
  background: -ms-linear-gradient(top, rgba(0,0,0,0.27) 0%, rgba(10,9,10,0.26) 5%, rgba(10,9,10,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0.27) 0%, rgba(10,9,10,0.26) 5%, rgba(10,9,10,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#0a090a', GradientType=0 );
}*/
/**
 * General
 */
html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #5b5e63;
  padding: 0;
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

a,
input,
button,
select,
textarea {
  -webkit-tap-highlight-color: transparent; }

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

:focus {
  outline: none; }

::-moz-focus-inner {
  border: 0; }

::-moz-selection {
  text-shadow: none;
  background-color: lightgray;
}

::selection {
  text-shadow: none;
  background-color: lightgray;
}

[hidden],
template {
  display: none; }

/* Links */
a {
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  background-color: transparent;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  /*hyphens: auto;*/
  transition: all 0.2s ease-out; }
a:hover {
    text-decoration: none; 
}

img {
  max-width: 100%;
}

@media all and (max-width: 1199px) {
  body {
    font-size: 12px; } }

@media all and (max-width: 1400px) {
  body {
    font-size: 13px; } }

/**
 * Typography
 */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
  margin-top: 0;
  color: #223566;
  letter-spacing: 1.5px; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 3em; }

h2, .h2 {
  font-size: 1.8em; }

h3, .h3 {
  font-size: 1.2em; }

h4, .h4 {
  font-size: 1em; }

h5, .h5 {
  font-size: 0.9em; }

h6, .h6 {
  font-size: 0.7em; }

p {
  margin: 0 0 25px; }

b,
strong {
  font-family: "Roboto", sans-serif;
  font-weight: 600; }

i,
em,
dfn,
cite {
  font-style: italic; }

code,
kbd,
tt,
var,
pre,
samp {
  font-size: 1em;
  font-family: "Roboto", sans-serif; }

var {
  font-style: italic; }

@media screen and (min-width: 768px) {
  h1, .h1 {
    font-size: 4.5em; } }

@media screen and (min-width: 998px) {
  h1, .h1 {
    font-size: 4.3em; } }

@media screen and (min-width: 1200px) {
  h1, .h1 {
    font-size: 5.5em; } }

/**
 * Containers
 */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.main {
  padding-top: 87px; }

/*Colors*/
.brd-blue {
  border-bottom-color: #223566; }

.single-content {
  position: relative;
}
.single-content .container {
  background: #ffffff;
  padding: 50px 50px 10px;
}
.single-content .container .heading {
  margin: 0 0 17px;
}

/*Section Headings*/
.heading {
  text-align: center;
  text-transform: uppercase;
  margin: 40px 0 20px;
  color: #5b5e63; }

@media screen and (min-width: 768px) {
  .heading {
    text-align: center;
    text-transform: uppercase;
    margin: 80px 0 50px;
    color: #5b5e63; } }

/*news*/
.sec-news {
  background: #f9f8f8;
  padding: 25px 0;
}
  .sec-news .flex-box {
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .sec-news .flex-box .flex-item {
      width: 80%;
      margin: 10px auto; }
  .sec-news .img-wrap {
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    height: 150px;
    min-height: 95px; }
  .sec-news .news-info {
    padding: 15px 20px;
    font-size: 14px; }
    .sec-news .news-info h3 {
      text-transform: uppercase;
      margin-bottom: 0; }
    .sec-news .news-info p {
      margin-bottom: 0; }
  .sec-news .date {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    background: rgba(231, 69, 61, 0.46);
    margin: 0;
    padding: 3px 10px;
    color: #ffffff; }
    .sec-news .date span {
      font-size: 18px;
      font-weight: 600; }

@media screen and (min-width: 768px) {
  .sec-news .flex-box .flex-item {
    width: 30%;
    margin: inherit; }
  .sec-news .img-wrap {
    height: 100%; } }

.sec-trapezoid-cont .trapezoid-wrap {
  height: 454px;
}
.sec-trapezoid-cont .trapezoid-wrap .trapezoid {
    border-bottom: 454px solid rgba(255, 255, 255, 0.86);
}

/*sec-action*/
.sec-action {
  padding: 25px 0; }
  .sec-action .flex-box {
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .sec-action .flex-box .flex-item {
      width: 60%;
      margin: 30px auto; }
  .sec-action h3 {
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 1px; }
  .sec-action .img-wrap {
    position: relative;
    border: 1px solid #233567;
    padding: 10px;
    margin-bottom: 10px;
    height: 100%;
    min-height: 95px; }
    .sec-action .img-wrap div {
      min-height: 100%;
      min-width: 100%; }
    .sec-action .img-wrap:before {
      content: " ";
      width: 16px;
      height: 16px;
      display: block;
      border: 1px solid #223566;
      position: absolute;
      left: 17px;
      bottom: -9px;
      border-radius: 50%; }
    .sec-action .img-wrap:after {
      content: " ";
      width: 10px;
      height: 10px;
      display: block;
      background: #223566;
      position: absolute;
      left: 20px;
      bottom: -6px;
      border-radius: 50%; }

@media screen and (min-width: 768px) {
  .sec-action {
    padding: 25px 0; }
    .sec-action .flex-box {
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .sec-action .flex-box .flex-item {
        width: 22%;
        margin: inherit; } }

.news-box-info {
  padding: 25px 28px; }
  .news-box-info .date {
    border-top: 1px solid #c3c3c3;
    border-bottom: 2px solid #c3c3c3; }

.img-wrap {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  height: 300px;
  min-height: 50%;
}

.slick-slide {
  font-size: 14px; }
  .slick-slide img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 10px; }
  .slick-slide h3 {
    padding-left: 90px;
    margin-top: 54px;
    font-size: 18px;
    letter-spacing: 1px;
    color: grey; }
  .slick-slide .box-shadow {
    padding: 25px; }
  .slick-slide p {
    padding-left: 16px;
    margin: 5px 0; }
    .slick-slide p .icon {
      color: #e7463e; }
    .slick-slide p:first-child .icon {
      font-size: 17px; }

.slick-slide > div {
  width: 90%;
  margin: 10px auto; }

@media screen and (min-width: 768px) {
  .sec-img-content .flex-box:nth-child(2n+0) {
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
  .main {
    padding-top: 138px; } }

/***
 * 4.0 - Forms
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  cursor: pointer;
  overflow: visible; }

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; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

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

input[type="search"] {
  -webkit-appearance: textfield; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

.form {
  background: #ffffff; }

.form-check,
.form-radio {
  margin-bottom: 10px; }

.form-group {
  position: relative;
  margin-bottom: 15px; }
  .form-group.half {
    width: 50%;
    float: left; }
    .form-group.half:first-child {
      padding-right: 5px; }
    .form-group.half:last-child {
      padding-left: 5px; }

.form-group-btn {
  position: relative; }
  .form-group-btn .dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    padding-top: 20px;
    margin-top: -10px;
    z-index: 1; }
    .form-group-btn .dropdown-menu li {
      list-style: none; }
  .form-group-btn:hover .dropdown-menu {
    display: block; }

select,
textarea,
input[type='url'],
input[type='tel'],
input[type='time'],
input[type='text'],
input[type='email'],
input[type='number'],
input[type='search'],
input[type='password'],
input[type='week'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='month'],
.form-item {
  display: block;
  width: 100%;
  padding: 9px 25px;
  line-height: 1.1;
  color: inherit;
  font-family: inherit;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  background-image: none;
  border: 1px solid #b7b7b7;
  border-radius: 5px; }

/*
 Placeholder
 Chrome/Opera/Safari */
::-webkit-input-placeholder {
  color: #b0b0ae; }

::-moz-placeholder {
  color: #b0b0ae; }

:-ms-input-placeholder {
  color: #b0b0ae; }

:-moz-placeholder {
  color: #b0b0ae; }

.radio,
.checkbox {
  position: relative;
  font-size: 14px;
  padding-left: 25px; }
  .radio input,
  .checkbox input {
    display: none; }
    .radio input:checked + span:before,
    .checkbox input:checked + span:before {
      content: '';
      display: inline-block;
      position: absolute;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .radio span,
  .checkbox span {
    position: absolute;
    left: 0;
    top: 0;
    height: 14px;
    width: 14px;
    border: solid 1px #b0b0ae;
    margin-right: 5px;
    color: #b0b0ae; }

.radio span {
  border-radius: 50%; }

.radio input:checked + span:before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: '';
  background: #b0b0ae; }

.checkbox input:checked + span:before {
  content: '\ea10';
  font-family: 'icomoon';
  font-size: 8px;
  color: inherit; }

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.clear-mrg > *:last-child {
  margin-bottom: 0 !important; }

.clear-btn {
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent; }

.hide {
  display: none !important; }

.hidden {
  display: none; }

.invisible {
  visibility: hidden; }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.mobile-hidden {
  display: none;
}

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.text-left {
  text-align: left; }

.text-upper {
  text-transform: uppercase; }

.pull-left {
  float: left !important; }

.pull-right {
  float: right !important; }

.box-shadow {
  box-shadow: 0px 1px 3px rgba(34, 53, 102, 0.5);
}

.trapezoid-wrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 410px;
}
  .trapezoid-wrap .trapezoid {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    border-bottom: 410px solid rgba(255, 255, 255, 0.86);
    border-left: 120px solid transparent;
    border-right: 0 solid transparent; }
    .trapezoid-wrap .trapezoid.brd-blue {
      border-bottom-color: #223566; }
  .trapezoid-wrap .trapezoid-cont {
    width: 100%;
    float: right;
    position: relative;
    z-index: 1; }

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover; }

.flex-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 200px; }

.half-box {
  width: 100%; }
  .half-box:first-child {
    padding-right: 0; }
  .half-box:last-child {
    padding-left: 25px; }

/*margin & padding*/
.mrg-top-minus {
  margin-top: -25px;
}
.mrg-top-minus-dbl {
  margin-top: -60px;
}

.mrg-bottom-base {
  margin-bottom: 10px; }

.mrg-bottom-0 {
  margin-bottom: 0; }

.cont-padding-25 .half-box {
  padding: 0 25px; }

/*brd-radius*/
.brd-radius {
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
    .mobile-show {
        display: none;
    }
    .mobile-hidden {
        display: block;
    }
    .trapezoid-wrap {
      /*height: 508px; }*/
        /*height: 244px;*/
    }
    .trapezoid-wrap .trapezoid {
      width: 28.5%;
      /*border-bottom: 508px solid rgba(255, 255, 255, 0.86); }*/
        border-bottom: 254px solid rgba(255, 255, 255, 0.86);
    }
    .trapezoid-wrap .trapezoid-cont {
        width: 45%;
    }
    .half-box {
        width: 50%;
    }
    .half-box:last-child {
        padding-left: 25px;
    }
}

.slick-next:before {
  color: #223566;
  content: "\f105";
  font-family: 'icomoon'; }

.slick-prev:before {
  color: #223566;
  content: "\f104";
  font-family: 'icomoon'; }

/**
 * Buttons
 */
.btn-small {
  font-family: inherit;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.0;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  margin-top: 5px;
  padding: 5px 15px;
  display: inline-block;
  background: transparent;
  border-radius: 5px;
  border: 0;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  box-shadow: transparent 0 0 0;
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
.btn {
  font-family: inherit;
  font-size: 16px;
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: 9px 20px;
  display: inline-block;
  background: transparent;
  border-radius: 5px;
  border: 0;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  box-shadow: transparent 0 0 0;
  transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
.btn:hover, .btn-small:hover {
  box-shadow: -1px 2px 4px rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.8);
}
.btn.bg-purple:hover {
  box-shadow: -1px 2px 4px rgba(0, 0, 0, 0.25);
  background: rgba(100, 100, 100, 0.8);
}
.btn.btn-icon {
  padding: 0.8rem 1.2rem;
  line-height: 1.6em;
}
.btn .icon {
  font-size: 1.2em;
  line-height: 1em;
  vertical-align: text-bottom;
  display: inline-block;
  margin-right: 10px;
}
.btn.btn-brd {
  border: 1px solid #5b5e63;
  color: #5b5e63;
}
.btn.btn-lg {
  font-size: 1.1em;
  padding: 15px 45px;
}
.btn.btn-sm {
  font-size: 0.75em;
  padding: 0.6rem 1.3rem;
}
.btn.btn-upper {
  text-transform: uppercase;
}
.btn.btn-block {
  display: block;
  width: 100%;
}

.btn-order {
    margin-left: 100%;
}

/**
 * Header
 */
.header {
  position: relative;
  background-image: url("../123_images/123/header.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*.header-alt {
  position: relative;
  background-image: url("../123_images/123/header_3.jpg");
  background-position:  center;
  background-repeat: no-repeat;
  background-size: cover;
}*/
  .header .mobile-btn {
    position: fixed;
    right: 20px;
    top: 10px;
    background: transparent;
    border: none;
    width: 25px;
    border-top: 3px solid #223566;
    border-bottom: 3px solid #223566;
    z-index: 888;
    padding: 0; }
    .header .mobile-btn span {
      margin: 5px 0;
      display: block;
      height: 3px;
      background: #223566; }
  .header .member-registration {
    width: 100%;
    padding-left: 0;
    position: relative;
    z-index: 1;
    float: right;
    text-align: justify;
    color: #223566;
    /*
 Placeholder
 Chrome/Opera/Safari */ }
    .header .member-registration input[type='text'],
    .header .member-registration input[type='password'] {
      text-align: center;
      color: #223566; }
    .header .member-registration ::-webkit-input-placeholder {
      color: #223566; }
    .header .member-registration ::-moz-placeholder {
      color: #223566; }
    .header .member-registration :-ms-input-placeholder {
      color: #223566; }
    .header .member-registration :-moz-placeholder {
      color: #223566; }
    .header .member-registration h2 {
      text-align: center;
      text-transform: uppercase; }

.header .login {
    width: 100%;
    display: block;
}
.login:hover {
    background-color: #223566;
    color: #ffffff;
}

.nav-bar {
  background: #223566;
  position: fixed;
  width: 100%;
  top: 87px;
  left: 0;
  z-index: 9; }
  .nav-bar .btn {
    margin: 6px 0; }
  .nav-bar ul {
    margin: 0;
    padding: 0; }
    .nav-bar ul li {
      display: inline-block;
      position: relative; }
      .nav-bar ul li a {
        text-decoration: none;
        color: #ffffff;
        font-size: 12px;
        padding: 15px 19px 12px 0;
        display: block;
        letter-spacing: 0px; }
        .nav-bar ul li a:hover {
          color: rgba(255, 255, 255, 0.5); }
      .nav-bar ul li .sub-menu {
        display: none;
        position: absolute;
        z-index: 999;
        background: #223566;
        padding: 10px;
        min-width: 145px; }
        .nav-bar ul li .sub-menu a {
          padding: 3px; }
      .nav-bar ul li:hover ul {
        display: block; }

/*
 * Top-bar
 */
.top-bar {
  height: 87px;
  padding: 0px 0;
  background: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10; }
  .top-bar .logo {
    font-size: 24px;
    line-height: 32px;
    color: #223566;
    text-transform: uppercase;
    margin: 5px 0 0 0; }
  .top-bar .search-box {
    width: 141px;
    position: relative;
    margin-top: 23px; }
    .top-bar .search-box .search-btn {
      position: absolute;
      top: 0;
      right: 0;
      width: 30px;
      height: 36px;
      background: url("../123_images/123/search_icon.png") center transparent;
      background-repeat: no-repeat;
      border: none; }
  .top-bar .lng-list {
    margin: 0;
    padding-left: 11px;
    padding-top: 23px; }
    .top-bar .lng-list a {
      color: #4387f1;
      padding: 9px 3px;
      text-decoration: none;
      text-transform: uppercase;
      display: block;
      font-size: 12px; }
    .top-bar .lng-list ul {
      display: none;
      position: absolute;
      background: #ffffff;
      margin: 0;
      padding: 5px 10px;
      z-index: 9999; }
      .top-bar .lng-list ul li {
        display: block; }
    .top-bar .lng-list:hover ul {
      display: block; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: #ffffff;
    z-index: 9999;
    transition: all 500ms;
    overflow: scroll;
}
  .mobile-menu .mobile-close {
    display: none;
    background: transparent;
    border: none;
    position: fixed;
    top: 10px;
    right: 20px;
    width: 25px;
    z-index: 100;
    padding: 0; }
    .mobile-menu .mobile-close span {
      display: block;
      height: 3px;
      background: #223566;
      margin: 5px 0;
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
      position: relative;
      margin-top: 7px; }
      .mobile-menu .mobile-close span:last-child {
        -webkit-transform: rotate(135deg);
            -ms-transform: rotate(135deg);
                transform: rotate(135deg);
        margin-top: -8px; }
  .mobile-menu.open {
    right: 0; }
    .mobile-menu.open .mobile-close {
      display: block; }
  .mobile-menu li {
    list-style: none; }
    .mobile-menu li a {
      padding: 5px;
      display: block;
      text-decoration: none;
      color: #223566; }

@media screen and (min-width: 1100px) {
  .top-bar .ttop-nav-bar {
    margin-right: 83px; }
    .top-bar .ttop-nav-bar ul li a {
      font-size: 16px;
      padding: 12px 9px; }
  .nav-bar ul li a {
    font-size: 16px; } }

@media screen and (min-width: 768px) {
  .top-bar .logo {
    font-size: 32px; }
  .header .member-registration {
    width: 40%;
    padding-left: 25px; } }

/*colors*/
.color-black {
  color: #000000; }

.color-white {
  color: #ffffff; }

.color-primary {
  color: #180d12; }

.color-green {
  color: #00a652; }

.color-orange {
  color: #e7463e; }

.color-blue {
  color: #223566; }

.color-light-blue {
  color: #4387f1; }

.color-nevi-blue {
  color: #223566; }

.color-purple {
  color: #652d91; }

/*Background colors*/
.bg-black {
  background-color: #000000; }

.bg-white {
  background-color: #ffffff; }

.bg-primary {
  background-color: #180d12; }

.bg-green {
  background-color: #00a652; }

.bg-orange {
  background-color: #e7463e; }

.bg-blue {
  background-color: #223566; }

.bg-nevi-blue {
  background-color: #223566; }

.bg-purple {
  background-color: #652d91; }

.search-filter {
  padding: 17px;
  margin-bottom: 35px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 7px; }
  .search-filter .form {
    border-radius: 7px; }
    .search-filter .form .form-group {
      float: none;
      margin-bottom: 0;
      border-bottom: 1px solid #b0b0ae; }
      .search-filter .form .form-group input {
        text-align: center; }
      .search-filter .form .form-group .form-group-btn .btn-block {
        padding: 1.2rem 1rem; }
      .search-filter .form .form-group.form-dropdown {
        width: 100%; }
        .search-filter .form .form-group.form-dropdown .category-filters {
          padding: 0 1rem; }
    .search-filter .form .btn-search {
      display: block;
      width: 100%; }

@media screen and (min-width: 770px) {
  .search-filter .form .form-group {
    float: left;
    margin-bottom: 0;
    border-bottom: 0; }
    .search-filter .form .form-group input {
      text-align: left; }
    .search-filter .form .form-group .form-group-btn {
      border-right: 1px solid #b0b0ae; }
    .search-filter .form .form-group.form-dropdown {
      width: 20%;
      z-index: 1; }
  .search-filter .form .btn-search {
    display: inherit;
    width: inherit; } }

@media screen and (min-width: 993px) {
  .search-filter .form .form-group .form-group-btn .btn-block {
    padding: 1.2rem 3rem; }
  .search-filter .form .form-group.form-dropdown .category-filters {
    padding: 0 3rem; } }

.main-wrap {
  padding-top: 120px;
  background-image: url("../123_images/123/main_bg.png");
  background-position: center top;
  background-repeat: no-repeat; }

.content {
  background: #ffffff;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 35px; }
  .content .result-info {
    margin: 20px; }
    .content .result-info .result-count {
      font-size: 16px;
      color: #180d12;
      margin-bottom: 20px; }
    .content .result-info .form {
      font-size: 12px;
      width: 175px; }
      .content .result-info .form p {
        display: inline-block; }
      .content .result-info .form .orderby {
        font-size: 12px;
        padding: 0;
        display: inline-block;
        max-width: 120px;
        font-weight: 600; }
  .content .results {
    padding: 10px 20px; }
    .content .results .result-item {
      border: 1px solid #b0b0ae;
      border-radius: 5px;
      padding: 10px 20px;
      margin-bottom: 20px; }
      .content .results .result-item .result-item-img {
        width: 120px;
        border: 1px solid #b0b0ae;
        text-align: center;
        height: 100px;
        margin: 10px auto;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
      .content .results .result-item .result-item-info .h3 {
        color: #180d12;
        font-weight: 600; }
      .content .results .result-item .result-item-info p {
        font-size: 12px; }
      .content .results .result-item .result-item-info .result-item-cont,
      .content .results .result-item .result-item-info .result-item-btn {
        float: none;
        text-align: center; }
      .content .results .result-item .result-item-info .result-item-btn {
        margin-top: 0;
        max-width: 100%;
        width: 100%; }
        .content .results .result-item .result-item-info .result-item-btn .btn {
          margin-bottom: 10px; }

@media screen and (min-width: 701px) {
  .content {
    padding: 20px; }
    .content .result-info .result-count {
      float: left;
      margin-bottom: 0; }
    .content .result-info .form {
      float: right; }
    .content .results .result-item .result-item-img {
      margin: 10px 0 0;
      float: left;
      width: 120px;
      height: 100px; }
    .content .results .result-item .result-item-info {
      padding: 20px 0 5px 140px; }
      .content .results .result-item .result-item-info .result-item-cont,
      .content .results .result-item .result-item-info .result-item-btn {
        float: left;
        text-align: left; }
      .content .results .result-item .result-item-info .result-item-btn {
        margin-top: 0;
        max-width: 100%;
        width: 100%;
        text-align: left; } }

@media screen and (min-width: 993px) {
  .content {
    width: 75%; }
    .content .result-info .result-count {
      font-size: 20px; }
    .content .results .result-item .result-item-info .result-item-cont {
      float: left;
      text-align: left; }
    .content .results .result-item .result-item-info .result-item-btn {
      float: right;
      text-align: right; } }

@media screen and (min-width: 1040px) {
  .content .results .result-item .result-item-info .result-item-btn {
    margin-top: -20px;
    max-width: 235px;
    text-align: right; }
    .content .results .result-item .result-item-info .result-item-btn .btn {
      border-radius: 5px;
      margin-bottom: 15px; }
      .content .results .result-item .result-item-info .result-item-btn .btn:last-child {
        margin-bottom: 0; } }

/*
 * Footer
 */
.footer {
  margin-top: 30px;
  color: #738bc7; }
  .footer h1, .footer .h1, .footer h2, .footer .h2, .footer h3, .footer .h3, .footer h4, .footer .h4, .footer h5, .footer .h5, .footer h6, .footer .h6, .footer a {
    color: #ffffff !important; }
  .footer .flex-box {
    padding: 20px 0 20px; }
    .footer .flex-box .flex-item {
      width: 100%; }
  .footer .footer-menu {
    padding: 0; }
    .footer .footer-menu li {
      list-style: none;
      padding-left: 0; }
      .footer .footer-menu li a {
        text-decoration: none;
        padding: 5px 0;
        display: block; }
  .footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px; }
    .footer .footer-bottom p {
      margin-bottom: 0; }
      .footer .footer-bottom p.small {
        font-size: 12px; }

@media screen and (min-width: 768px) {
  .footer {
    margin-top: 60px; }
    .footer .flex-box {
      padding: 80px 0 30px;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .footer .flex-box .flex-item {
        width: 28%; }
    .footer .footer-menu {
      padding-left: 40px; }
      .footer .footer-menu li {
        padding-left: 66px; } }


/********************************************************************/

.error {
    color: red;
}
.error_small {
    color: red;
    font-size: smaller;
}
label, span.label {
    font-weight: bold;
}

select.lister_select {
	padding: 0;
	border: 1px solid black;
	height: 1.3em;
    font-weight: normal;
	font-size: 2em;
    width: auto;
    display: inline;
}
.lister_select option {
	height: 1.2em;
    font-weight: normal;
	font-size: 10px;
}
select.lister_select option {
	height: auto;
	font-size: 14px;
	padding: 0 10px 0 0;
	margin: 0;
}
a.lister_link, a:visited.lister_link {
	text-decoration: none;
	font-size: 1.0em;
	color: black;
    vertical-align: middle;
    display: inline;
}
.lister_div {
    display: inline;
    vertical-align: middle;
    margin: 0 0 0 10px;
    padding: 0 0 12px 0;
}
.darkgreen {
    color: darkgreen;
}
.error {
    color: red;
}
#images {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    margin: 0;
    padding: 0 5px;
}
#guides {
    width: auto;
}
a {
    text-decoration: none;
}
select {
    width: auto;
}
.script {
    font-family: "Comic Sans MS";
}
.error {
    color: red;
}
.warning {
    color: orange;
}
.success {
    color: green;
}

.logo img {
	height:75px;
}

.bottom-logo {
    height: 60px;
    width: auto;
}

video {
  width: 25%  !important;
  height: auto !important;
}

img.social-icon {
	width: 32px;
	height: 32px;
	vertical-align: middle;
	display: inline-block;
	float: right;
	margin: 20px 0 10px 5px;
}

@media all and (max-width: 320px) {
    video {
      width: 100%  !important;
      height: auto !important;
    }

	img.social-icon {
		width: 16px;
		height: 16px;
		vertical-align: middle;
		display: inline-block;
		float: right;
		margin: 20px 0 10px 5px;
	}
	
    .trapezoid-wrap .trapezoid {
        width: 80%;
    }

    .btn-order {
        margin-left: 50%;
    }

    .trapezoid-wrap, .trapezoid-wrap .trapezoid {
        height: 210px;
    }

    .trapezoid-wrap .trapezoid {
      border-bottom: 210px solid rgba(255, 255, 255, 0.86);
    }

    .search-input, .search-btn {
        visibility: hidden;
    }

    .top-bar .lng-list {
        padding-top: 33px;
    }
}
@media all and (max-width: 640px) {
    video {
      width: 50%  !important;
      height: auto !important;
    }

	img.social-icon {
		width: 16px;
		height: 16px;
		vertical-align: middle;
		display: inline-block;
		float: right;
		margin: 20px 0 10px 5px;
	}
	
    .trapezoid-wrap .trapezoid {
        width: 80%;
    }

    .btn-order {
        margin-left: 50%;
    }

    .trapezoid-wrap, .trapezoid-wrap .trapezoid {
        height: 210px;
    }
    .trapezoid-wrap .trapezoid {
      border-bottom: 210px solid rgba(255, 255, 255, 0.86);
    }

    .mrg-top-minus-dbl {
        margin-top: -30px;
    }

    .search-input, .search-btn {
        visibility: hidden;
    }

    .top-bar .lng-list {
        padding-top: 33px;
    }

    .single-content .container {
        padding: 10px 10px 10px;
    }

}

.trapezoid-wrap {
  height: 410px;
}
.header {
  background-image: url("../123_images/123/header.jpg");
}

.sf-menu-low>li:nth-last-child(1) a {
    color: gold;
    font-weight: bold;
}

.login_menuitem {
    background-color: #223566;
    color: gold;
    font-weight: bold;
}
#div_login {
    padding: 10px;
    max-width: 200px;
}
.header {
  background-image: url("../123_images/123/9.jpg");
}.trapezoid-wrap {
  height: 388px;
}

.header {
  background-image: url("../123_images/123/9.jpg");
}.trapezoid-wrap {
  height: 388px;
}

.header {
  background-image: url("../123_images/123/11.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("../123_images/123/11.jpg");
}

.header {
  background-image: url("../123_images/123/9.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("../123_images/123/11.jpg");
}.trapezoid-wrap {
  height: 380px;
}

.trapezoid-wrap {
  height: 410px;
}

.header {
  background-image: url("../123_images/123/9.jpg");
}.trapezoid-wrap {
  height: 410px;
}



.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}

.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}.trapezoid-wrap {
  height: 388px;
}

.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}.trapezoid-wrap {
  height: 657px;
}



.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}

.header {
  background-image: url("/123_SITE/123_images/123/14.jpg");
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 5.jpg");
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 5.jpg");
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 5.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 5.jpg");
}.trapezoid-wrap {
  height: 388px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 5.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 5.jpg");
}.trapezoid-wrap {
  height: 657px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 5.jpg");
}.trapezoid-wrap {
  height: 1200px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 5.jpg");
}.trapezoid-wrap {
  height: 1200px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 5.jpg");
}.trapezoid-wrap {
  height: 1349px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 2.jpg");
}.trapezoid-wrap {
  height: 2000px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk 2.jpg");
}.trapezoid-wrap {
  height: 2000px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk8.jpg");
}.trapezoid-wrap {
  height: 388px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk8.jpg");
}

.trapezoid-wrap {
  height: 388px;
}

.header {
  background-image: url("/123_SITE/123_images/123/hajk8.jpg");
}.trapezoid-wrap {
  height: 388px;
}
