@import url('https://fonts.googleapis.com/css?family=Comfortaa:400,700&display=swap&subset=greek');
/* Extras */
html,
body {
  font-size: 16px;
  font-family: 'Comfortaa', cursive;
  font-weight: 400;
}
body {
  background-color: #ececec;
  color: #2d2d2d;
  background-repeat: repeat;
  padding-left: 50px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}
main > .container {
  position: relative;
  padding: 60px;
}
.home main > .container,
.more main > .container {
  width: 100%;
  max-width: 100%;
  background-color: #fff;
}
#title-language h1 {
  font-weight: 400;
  color: #909090;
  font-size: 1.2em;
  text-align: center;
}
figcaption>.title {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: inherit;
}
.navbar-expand-lg .navbar-toggler { display: block!important; }
#move-top {
  display: flex!important;
  align-items: center;
  justify-content: center;
  z-index: 1999!important;
}
/* Footer ====================================================================== */
#footer {
  display: block;
  position: relative;
  color: #e4e4e4;
  background-color: #131313;
  text-align: center;
  padding: 50px 0;
}
#footer #bottom-footer {
  margin-top: 30px;
  margin-bottom: 30px;
}
#footer #home-map {
  height: 300px;
  width: 100%;
}
#footer .top-container {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 30px;
}
#footer .top-container:last-of-type {
  margin-bottom: 0;
  padding: 0 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(134, 134, 134, 0.17);
  width: auto;
  margin: auto;
}
.contact-info-section {
  margin-right: 20px;
  font-weight: bold;
  font-size: 20px;
  color: #50b51d;
}
.contact-info-section:last-of-type { margin-right: 0; }
.contact-info-section > span,
.contact-info-section a {
  font-size: 16px;
  margin-left: 5px;
  color: #777777;
  text-decoration: none;
}
#footer #page-title {
  text-align: center;
  display: block;
  position: relative;
  width: 100%;
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 30px;
}

/* Buttons ===================================================================== */
.button, .btn {
  display: inline-block;
  position: relative;
  margin: auto;
  padding: 16px 20px;
  background-color: #50b51d;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.7em;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  z-index: 1;
}
.button.inverted {
  color: #4b9625;
  border-color: #4b9625;
  background-color: transparent;
}
.button:hover, .btn:hover {
  color: #fff;
  text-decoration: none;
  background-color: #398314;
}
.btn.focus, .btn:focus { box-shadow: none; }
/* ============================================================================= */

/* Header ====================================================================== */
#header {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  background-color: transparent;
  color: #252525;
  max-height: 100%;
}
#header-bottom {
  max-height: 100%;
}
#header-bottom .container-fluid { padding: 0; }
#header-bottom .row { margin: 0; }
body:not(.home) #header-bottom {
  background-color: #50b51d;
}
/* ============================================================================= */

/* Front logo ================================================================== */
#front-logo {
  display: block;
  position: absolute;
  top: 50px;
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  max-width: 300px;
}
#front-logo > img {
  width: 100%;
  height: auto;
}
body #front-logo { display: none; }
/* ============================================================================= */

/* MainNav ===================================================================== */
#header-top {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 50px;
  background-color: #131313;
  overflow: hidden;
  z-index: 9999;
  transition: width 0.5s ease;
}
#header-top.open { width: 100%; }
#main-nav {
  display: flex;
  width: 100%;
  height: 100%;
  flex-flow: row-reverse;
  padding: 10px 100px;
}
#logo {
  opacity: 0;
  transform: scale(0.5);
  transition: 0.3s all 0.5s ease;
}
#header-top.open #logo {
  opacity: 1;
  transform: scale(1);
}
#main-nav .col-md { order: -1; }
#logo > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s ease;
}
#main-nav .navbar-nav {
  flex-direction: column;
  position: relative;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.open #main-nav .navbar-nav {
  opacity: 1;
}
#main-nav a.nav-link {
  text-transform: uppercase;
  font-size: 1.3em;
  display: block;
  width: auto;
}
#main-nav ul.dropdown-menu {
  background: none;
  margin-left: 0;
  padding-left: 0;
  transition: 0.3s padding 0.3s ease;
  transition: 0.3s margin 0.3s ease;
}
#main-nav ul.dropdown-menu.open {
  left: 100%;
  right: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  width: auto;
  margin-left: 40px;
  padding-left: 20px;
  border: 0;
  border-left: 1px solid #525252;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.navbar-toggler {
  display: block;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  background-color: #fff;
  outline: none!important;
  cursor: pointer;
  z-index: 99;
}
.navbar-toggler svg {
  display: block;
  position: absolute;
  width: 50px!important;
  height: 50px;
  padding: 10px;
  border-radius: 25%;
  cursor: pointer;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
.navbar-toggler .fa-times { opacity: .5; }
.navbar-toggler .fa-times:hover { opacity: 1; }
.navbar-light .navbar-toggler {
  color: #131313;
  border-right: 1px solid #a5a5a5;
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-brand { color: #fff; }
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link { color: rgba(255,255,255,.5); }
.navbar-light .navbar-nav :not(.active) .nav-link:hover { color: rgba(255,255,255,.75); }
.langsDropdown.dropdown-menu {
  min-width: 70px!important;
  background-color: transparent;
  color: #fff;
}
.langsDropdown .dropdown-item {
  color: #fff;
  opacity: 0.8;
}
.langsDropdown .dropdown-item.active, .langsDropdown .dropdown-item:active,
.langsDropdown .dropdown-item:hover {
  background-color: transparent;
  opacity: 1;
}

/* Toggle */
#main-nav .navbar-toggler .fa-times{ display: none; }
#main-nav .navbar-toggler .fa-bars { display: block; }
.open #main-nav .navbar-toggler .fa-times{ display: block; }
#header-top:not(.open) #main-nav .navbar-toggler .fa-xmark,
.open #main-nav .navbar-toggler .fa-bars {
   display: none;
  }
/* ============================================================================= */

/* Social ====================================================================== */
.social-container {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}
.social-container > li {
  display: inline-block;
  padding: 0;
  font-size: 26px;
  margin-right: 30px;
}
.social-container > li:last-of-type { margin-right: 0; }

.social-container > li > a {
  color: #cccccc;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.social-container > li > a:hover {
  opacity: 1;
}
.social-container > li > a > img {
  width: 100%;
  height: auto;
  opacity: 0.5;
  vertical-align: inherit;
}
/* ============================================================================= */

/* Slideshow =================================================================== */
#main-slideshow {
  padding: 0;
  margin: 0;
}
#main-slideshow .carousel-inner { width: auto; }
#main-slideshow .carousel-item {
  overflow: hidden;
}
#main-slideshow .carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  max-width: 60%;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}
#main-slideshow .carousel-caption h3 {
  font-size: 5em;
}
#main-slideshow .carousel-caption p {
  font-size: 1.4em;
  margin: 40px auto;
}
#main-slideshow .carousel-control-prev-icon {
  background-image: url('../images/left-caret.png');
}
#main-slideshow .carousel-control-next-icon {
  background-image: url('../images/right-caret.png');
}
#main-slideshow .carousel-item img {
  min-width: 100%;
  width: 100%;
  height: auto;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 40px;
  height: 40px;
}
/* ============================================================================= */

/* Articles ==================================================================== */
#recent-articles.row {
  padding-bottom: 30px;
  margin-left: -60px;
  margin-right: -60px;
  margin-bottom: -60px;
  background-color: #ececec;
}
#recent-articles #recent-articles-title > h2 {
  font-size: 2em;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 40px;
  color: inherit;
  text-transform: uppercase;
}
#recent-articles > .container {
  width: 100%;
  max-width: 100%;
  padding: 0 55px;
}
.recent-article, .article > figure {
  white-space: normal;
  display: flex;
  flex-direction: row;
  align-content: stretch;
  justify-items: flex-start;
  margin: auto;
  margin-top: 0;
  padding: 0;
  text-align: left;
  transition: all 0.5s ease;
}
.article > figure { margin-bottom: 30px; }
.recent-article > .article-img, .article figure > .article-img {
  display: flex;
  position: relative;
  flex: 1 1;
  height: 240px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.recent-article figcaption, .article figcaption {
  padding: 20px 40px;
  flex: 2 1;
}
.recent-article .article-title,
.article .title {
  display: block;
  overflow: hidden;
  margin: 0;
  width: 100%;
  font-size: 1.7em;
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}
.recent-article .title,
.article .title > h3 {
  font-size: inherit;
  font-weight: inherit;
}
.recent-article .description, .article .description {
  margin: 20px 0;
}
.recent-article .button > .fa-chevron-right, .article .button > .fa-chevron-right {
  font-size: 12px;
  margin-left: 5px;
}
#article-image {
  width: 50%;
  float: left;
  margin-right: 20px;
}
#view-article-content.noPicture #article-image { display: none; }
#recent-articles .all-articles {
  margin: 30px auto;
}
/* ============================================================================= */

/* Premium text ================================================================ */
#premium-text {
  padding: 0;
  margin-bottom: 40px;
  text-align: center;
}
#premium-text > div {
  padding: 0;
}
#premium-text .col-md-12 { margin: 0 auto; }
/* ============================================================================= */

/* Exclusive URLs ============================================================== */
#exclusiveURLs {
  position: relative;
  justify-content: space-around;
  margin: 0;
}
.exclusive-url {
  margin-bottom: 40px;
}
.exclusive-url .exclusive-url-inner { transition: box-shadow 0.5s ease; }
.exclusive-url h3 { font-size: inherit; }
.exclusive-url-inner {
  position: relative;
  text-align: left;
}
.exclusive-url .url-head {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  color: #fff;
}
.exclusive-url img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
.exclusive-url .contents-wrapper {
  background-color: #fff;
  padding: 30px;
}

/* Small URLs ------------------------------------------------------------------ */
.exclusive-url.smallUrl,
.exclusive-url.expoUrl {
  flex: 0 0 25%;
  padding: 0 15px;
}
.exclusive-url.smallUrl .exclusive-url-inner,
.exclusive-url.expoUrl .exclusive-url-inner {
  text-align: center;
}
.exclusive-url.smallUrl .url-title,
.exclusive-url.expoUrl .url-title {
  display: block;
  position: relative;
  font-size: 2em;
  font-weight: 700;
  color: #131313;
  text-decoration: none;
}
.exclusive-url.smallUrl .url-title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  bottom: auto;
  margin: auto;
  width: 2px;
  height: 50px;
  background-color: #131313;
  z-index: 9;
}
.exclusive-url.smallUrl .contents-wrapper .url-contents,
.exclusive-url.expoUrl .contents-wrapper .url-contents {
  margin: 20px 0;
  font-size: .8em;
}

/* Medium URLs ----------------------------------------------------------------- */
.exclusive-url.mediumUrl {
  flex: 0 0 100%;
  padding: 0 15px;
}
.exclusive-url.mediumUrl .exclusive-url-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.exclusive-url.mediumUrl .contents-wrapper {
  position: relative;
  padding: 50px 50px 40px;
}
.exclusive-url.mediumUrl .url-title {
  display: block;
  position: relative;
  font-size: 40px;
  color: #2d2d2d;
  text-decoration: none;
}
.exclusive-url.mediumUrl .url-title::before {
  content: "";
  display: block;
  position: absolute;
  left: -100px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  width: 80px;
  height: 2px;
  background-color: #131313;
  z-index: 9;
}
.exclusive-url.mediumUrl .contents-wrapper .url-contents {
  margin: 30px 0;
}
.exclusive-url.mediumUrl .url-head, .exclusive-url.mediumUrl .contents-wrapper {
  flex: 0 0 50%;
}
.exclusive-url.mediumUrl:nth-of-type(even) > .exclusive-url-inner {
  flex-direction: row-reverse;
  text-align: right;
}
.exclusive-url.mediumUrl:nth-of-type(even) .url-title::before {
  left: auto;
  right: -100px;
}

/* Big URLs -------------------------------------------------------------------- */
.exclusive-url.bigUrl {
  flex: 1 0 100%;
  margin-left: -60px;
  margin-right: -60px;
}
.exclusive-url.bigUrl > .exclusive-url-inner {
  overflow: hidden;
}
.exclusive-url.bigUrl .url-head {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.exclusive-url.bigUrl img {
  display: none;
}
.exclusive-url.bigUrl .contents-wrapper {
  padding: 150px 60px;
  background-color: transparent;
}
.bigUrl:nth-of-type(even) .contents-wrapper {
  text-align: right;
}
.exclusive-url.bigUrl .contents {
  position: relative;
  color: #fff;
}
.exclusive-url.bigUrl .url-title {
  font-size: 4em;
  color: #fff;
  text-decoration: none;
}
.exclusive-url.bigUrl .contents-wrapper .url-contents {
  margin: 30px 0;
  font-size: 1.7em;
  max-width: 800px;
}
.bigUrl:nth-of-type(even) .contents-wrapper .url-contents {
  margin-left: auto;
}

/* Expo URLS =================================================================== */
#expo {
  display: flex;
  position: relative;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}
.exclusive-url.expoUrl {
  flex: 0 0 25%;
  flex-basis: 0;
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
}
.exclusive-url.expoUrl.shown {
  flex: 0 0 25%;
  padding: 0 15px;
}
.exclusive-url.expoUrl .url-title {
  margin-top: 20px;
}

#expo .next, #expo .prev {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: auto;
  right: auto;
  margin: auto;
  color: inherit;
  text-decoration: none;
  font-size: 1.3em;
  opacity: 0.7;
}
#expo .next { right: -30px; }
#expo .prev { left: -30px; }
#expo .next:hover, #expo .prev:hover {
  opacity: 1;
}


/* NOT HOME PAGES ============================================================== */
body:not(.home) main >.container {
  min-height: 700px;
}
body:not(.home) #hero-title {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  padding-top: 0;
  background-color: transparent;
  color: #000000;
}
body:not(.home) #hero-title h1 {
  position: relative;
  color: #fff;
  background-color: transparent;
  font-size: 5em;
  font-weight: 700;
  text-transform: uppercase;
  margin: auto;
  padding: 40px 15px;
  padding-bottom: 160px;
  text-align: center;
  width: 100%;
  opacity: 0.8;
}
body:not(.home) #hero-title.with-header-image h1 {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}
body.offers main>.container,
body.pdf main>.container,
body.videos main>.container {
  background-color: transparent;
  box-shadow: none;
  min-height: 200px;
}
body.offers #footer,
body.pdf #footer,
body.videos #footer {
  display: block;
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  /* padding: 50px 80px; */
}
/* ============================================================================= */


/* More ======================================================================== */
body.more #more-content > .row, body.more2 #more-content > .row, body.more3 #more-content > .row,
#view-article-content > .row, #contact-content > .row {
  display: block;
  position: relative;
}
#contact-content > .row { display: flex; }
/* ============================================================================= */

/* Contact ===================================================================== */
#hero-title  #HeroMap {
  height: 500px;
  z-index: 0;
}
main#contact { margin-bottom: 180px; }
#contact-content>.row .contact-details, #contact-content>.row .contactform {
  padding: 0;
}
#contact-form > .row { flex-direction: column; }
#contact-form > .row > * {
  max-width: 100%;
  flex: 0 0 100%;
}
#contact-form {
  border: 0;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: transparent;
  background-clip: border-box;
  border-radius: .25rem;
}
#contact-form > .card-body {
  padding: 0;
  border-left: 1px solid #cacaca;
  padding-left: 20px;
}
.contactform.multicontact {
  flex: 0 0 100%;
  max-width: 100%;
}
.contactform.multicontact #contact-form > .card-body {
  padding: 15px;
  border-left: 0;
}
.contact-details-card .card-body {
  background-color: #c1c1c1;
  color: #fff;
}
.contact-details-card .map-holder { height: 300px; }
.contact-details-card.singlecontact .left,
.contact-details-card.singlecontact .right {
  display: block;
  position: relative;
  width: 50%;
  float: left;
  padding-right: 15px;
  text-align: right;
}
.contact-details-card.singlecontact .right {
  padding-right: 0;
  padding-left: 15px;
  text-align: left;
}
.contact-details-card a {
  color: #fff;
}

.red-dot { color: #e74c3c; }
.green-dot { color: #2ecc71; }
.form-control,
#contact #contact-form input[type="text"],
#contact #contact-form input[type="email"],
#contact #contact-form input[type="tel"],
#contact #contact-form textarea,
input[type=date], input[type=datetime-local], input[type=month],
input[type=time] {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  color: #191b27;
  font-size: 18px;
  padding: 5px;
  margin: 2px;
  margin-bottom: 15px;
  border-radius: 0;
}

span.cd-title {
  font-weight: bold;
}
.address-fields {
  font-size: 23px;
  color: #2d2d2d;
  margin-bottom: 40px;
}

.contact-details > .map-holder {
  height: 300px;
  margin-bottom: 20px;
}
.contact-details.multicontact {
  padding: 0 15px !important;
}
.form-group.actions {
  display: flex;
  justify-content: space-between;
}
#contact-form button.btn.button {
  margin-right: 0;
}
#contact #contact-form textarea {
  min-height: 200px;
}
/* ============================================================================= */


/* Gallery ===================================================================== */
#gallery { margin-bottom: 0; }
#gallery-content .image-group {
  /* max-width: 25%;
  flex: 0 0 25%; */
  padding-left: 0;
  padding-right: 0;
}
#gallery-content .image {
  padding: 0;
  max-width: 100%;
  flex: 0 0 100%;
}
#gallery-content figure {
  padding: 5px;
  margin: auto;
}
#gallery-content figure > a.img { display: inline-block; }
#gallery-content img {
  max-width: 100%;
  height: auto;
}
/* ============================================================================= */


/* PDF ========================================================================= */
#pdf .pdf {
  margin-bottom: 30px;
  max-width: 100%;
  flex: 0 0 100%;
}
#pdf-content .figure { display: flex; }
#pdf-content .figure > a {
  max-width: 33.333333%;
  flex: 0 0 33.333333%;
}
#pdf-content .figure > figcaption {
  max-width: 66.666667%;
  flex: 0 0 66.666667%;
  padding: 0 15px
}
#pdf h3 {
  font-size: 30px;
  font-weight: 700;
  color: #131313;
  text-decoration: none;
  margin-bottom: 40px;
}
/*============================================================================== */

/* Offers ====================================================================== */
#offers .offer .countdown .title {
  font-size: 0.7em;
}
#offers .offer {
  margin-bottom: 30px;
  max-width: 100%;
  flex: 0 0 100%;
}
#offers-content .card {
  flex-direction: row;
  border: none;
}
#offers-content .card img {
  max-width: 33.333333%;
  flex: 0 0 33.333333%;
  object-fit: cover;
}
#offers-content .card .card-body {
  max-width: 66.666667%;
  flex: 0 0 66.666667%;
  padding: 0 15px;
}
/* #offers-content .row { flex-direction: column; } */
#offers .offer h5 {
  font-size: 30px;
  font-weight: 700;
  color: #131313;
  text-decoration: none;
  margin-bottom: 40px;
}
#offers .expires-title {
  text-align: left;
  font-weight: bold;
}
#offers .countdown .value {
  font-weight: bold;
  color: #50b51d;
  margin-bottom: 5px;
}
#offers .countdown .title {
  margin-bottom: 15px;
}
#offers .buttons,
#offers .btn {
  margin-right: 20px;
}
#offers .coupon-text .title {
  margin-right: 15px;
}
#offers .coupon-text .value {
  font-weight: 700;
}

/* Modal form */
/* preloader and msg */
#offers .offer-enquiry-form .modal-dialog { position: relative; }
#offers .offer-enquiry-form .preloader {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
}
#offers .offer-enquiry-form .msg {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}
#offers .offer-enquiry-form .msg>.content {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  left: 0;
  right: 0;
  margin: auto;
  padding: 20px;
  text-align: center;
  font-size: 23px;
}
#offers .offer-enquiry-form.display-msg .msg {
  display: block;
}
#offers .offer-enquiry-form.display-msg .msg .btn {
  padding: 6 30px;
  margin: 10px auto;
}
#offers .offer-enquiry-form.display-msg .msg.success .content>p { color: #12a036; }
#offers .offer-enquiry-form.display-msg .msg.fail .content>p { color: #c42b16; }
#offers .offer-enquiry-form.sending .row { transition: all 0.3s ease; }
#offers .offer-enquiry-form.sending .row {
  opacity: 0;
  pointer-events: none;
}
#offers .offer-enquiry-form.sending .preloader { display: block; }


/* Videos ====================================================================== */
#videos-condent .row { flex-direction: column; }
#videos-condent .video {
  max-width: 100%;
  flex: 0 0 100%;
  margin-bottom: 30px;
}
#videos-condent .inner { display: flex; }
#videos-condent .inner > * {
  padding: 0 15px;
  max-width: 50%;
  flex: 0 0 50%;
}
/* ============================================================================= */


/* Search ====================================================================== */
#search-dropdown .dropdown-menu {
  left: auto !important;
  right: 0 !important;
  background-color: #131313;
}
/* Search results list */
#searchform-container .open-icon > a:hover,
#searchform-container .close-icon > a:hover {
  color: #2eb3e0;
}
#search-results-list { width: 100%; }
#search-results-list .result .title {
  color: #2eb3e0;
}
/* ============================================================================= */

#banners {
  display: flex;
  position: fixed;
  bottom: 0;
}

#banners > #fixed-banner,
#banners > #second-banner {
  position: relative;
  left: 0!important;
}

#second-banner {
  min-width: 300px;
  max-height: 150px;
  padding: 0!important;
  margin-left: 20px;
}
#second-banner > img {
  display: block!important;
  width: 100%;
  height: 100%;
}

/* Responsive ================================================================== */
@media (min-width: 576px) { #premium-text .col-md-12 { max-width: 540px; } }
@media (min-width: 768px) {
  #premium-text .col-md-12 { max-width: 720px; }
  #title-language h1 {
    font-weight: 400;
    font-size: 1.2em;
    margin: .67em 0;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .navbar-expand-lg .navbar-collapse { flex: 1; }
  .navbar-expand-lg .navbar-nav .dropdown-menu { position: static; }
  #premium-text .col-md-12 { max-width: 960px; }
}
@media (min-width: 1200px) { #premium-text .col-md-12 { max-width: 1140px; } }
@media (max-width: 1280px) {
  #main-slideshow .carousel-caption h3 {
    font-size: 3em;
  }
  .exclusive-url.smallUrl {
    flex: 0 0 25%;
  }
  .exclusive-url.smallUrl .contents-wrapper {
    padding: 10px 0;
  }
  .exclusive-url.smallUrl h3 {
    font-size: 0.7em;
  }
  #expo {
    padding: 0 60px;
  }
  .exclusive-url.expoUrl h3 {
    font-size: 0.7em;
  }
  #expo .next { right: 20px; }
  #expo .prev { left: 20px; }
  .exclusive-url.expoUrl .contents-wrapper {
    padding: 10px;
  }
  .expoUrl p.url-contents { font-size: 0.8em; }
  #recent-articles #recent-articles-title>h2 {
    padding-top: 40px;
  }
  .recent-article figcaption, .article figcaption {
    padding: 15px 20px;
    flex: 2 1;
  }
  .recent-article .article-title, .article .title {
    font-size: 1.4em;
  }
  .recent-article .description, .article .description {
    margin: 10px 0;
    font-size: 0.9em;
  }
}

@media (max-width: 1024px) {
  .button, .btn { padding: 10px 12px; }
  #main-slideshow .carousel-caption h3 { font-size: 2em; }
  #main-slideshow .carousel-caption p { font-size: 1.2em; }
  .exclusive-url h3 { font-size: 0.6em; }
  .exclusive-url.bigUrl .contents-wrapper .url-contents { font-size: 1.4em; }
  .exclusive-url .contents-wrapper { padding: 20px 0; }
  #expo { padding: 0 40px; }
  #expo .next { right: 15px; }
  #expo .prev { left: 15px; }
  .recent-article figcaption, .article figcaption { padding: 0 20px; }
  .exclusive-url.mediumUrl .contents-wrapper { padding: 30px 20px 20px; }
  .exclusive-url.smallUrl .exclusive-url-inner {
    padding: 10px;
    font-size: 0.8em;
  }
  .exclusive-url.smallUrl h3 { font-size: .5em; }
  .exclusive-url.expoUrl.shown { flex: 0 0 33%; }
  .exclusive-url.expoUrl .contents-wrapper { font-size: 0.8em; }
  .expoUrl p.url-contents { padding: 5px; }

  .exclusive-url.expoUrl { margin-bottom: 0; }

  .recent-article .title, .article .title > h3 {
    font-size: 0.8em;
    font-weight: inherit;
  }
  /* #gallery .image {
    padding: 40px 20px;
  } */

  #videos .title,
  #offers .offer .card-title,
  #pdf .pdf figcaption a > h3 {
    font-size: 1.2em;
    margin: 20px auto;
  }
  #videos .content {
    font-size: 0.8em;
    padding: 10px 15px;
    padding-top: 10px;
  }
  .card-body,
  #pdf .pdf figcaption {
    padding: 0.5rem;
  }
  #offers .buttons, #offers .btn {
    margin-right: 5px;
    padding: 5px;
  }
  #top-footer {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  #header-top {
    background: #131313;
  }
  #header-top.open #main-nav .col-md:last-of-type { flex-basis: auto; }
  /* #header-top #logo > img {
    max-height: 60px;
  } */
  #main-slideshow .carousel-caption { max-width: 100%; }
  .exclusive-url.bigUrl {
    margin-left: -60px;
    margin-right: -60px;
  }
  .exclusive-url.smallUrl {
    flex: 0 0 50%;
  }
  .exclusive-url.smallUrl .exclusive-url-inner {
    font-size: 1em;
  }
  body:not(.home) #hero-title h1 {
    font-size: 3em;
  }
  .exclusive-url.smallUrl .contents-wrapper .url-contents {
    font-size: 1.1em;
  }
  .exclusive-url.expoUrl.shown {
    flex: 0 0 50%;
  }
  .exclusive-url.expoUrl .contents-wrapper {
    font-size: 1em;
  }
  .expoUrl p.url-contents {
    font-size: 1em;
    padding: 20px 5px;
  }
  .recent-article, .article>figure {
    white-space: normal;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    justify-items: flex-start;
    margin: auto;
    margin-top: 0;
    padding: 0 20px;
    text-align: left;
    transition: all 0.5s ease;
  }
  .recent-article .title, .article .title>h3 {
    margin-top: 20px;
  }
  #articles-list .article {
    width: 100%;
    margin-bottom: 30px;
  }
  #videos .video,
  #offers .offer,
  #pdf .pdf {
    padding: 0 15px;
  }
  #pdf .pdf p.description {
    display: block;
    width: 100%;
    height: auto;
  }
  #videos .content { padding-left: 0; }
  #videos .title, #offers .offer .card-title, #pdf .pdf figcaption a>h3 {
    margin: 0 auto;
  }

  #gallery-content .image-group {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 767px) {
  #banners {
    z-index: 9999;
    flex-direction: column;
  }
  #second-banner {
    margin-left: 0;
    margin-top: 10px;
  }
  #main-nav {
    padding: 10px;
    padding-left: 65px;
  }
  #header-top.open #main-nav .col-md:last-of-type { display: none; }
  #main-nav .col-md {
    width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }
  #main-nav a.nav-link {
    white-space: normal;
    font-size: 1.1em;
  }
  #main-nav ul.dropdown-menu.open {
    margin-left: 10px;
    padding-left: 10px;
  }
  #premium-text .col-md-12 {
    padding-right: 30px;
    padding-left: 30px;
  }
  .home main>.container {
    padding: 40px 15px;
  }
  .exclusive-url.mediumUrl,
  .exclusive-url.smallUrl,
  .exclusive-url.expoUrl.shown {
    flex: 100%;
    padding: 0;
  }
  .contact-info-section {
    display: block;
    width: 100%;
  }
  #main-slideshow .carousel-caption p {
    display: none;
  }
  #main-slideshow .carousel-caption h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 30px;
  }
  #footer {
    left: 0;
    right: 0;
    padding: 50px 20px !important;
  }
  .exclusive-url.bigUrl .contents-wrapper {
    padding: 60px 20px;
    background-color: transparent;
    text-align: center;
  }
  .exclusive-url.bigUrl {
    margin-left: -15px;
    margin-right: -15px;
  }
  #exclusiveURLs .exclusive-url.mediumUrl > .exclusive-url-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .exclusive-url.mediumUrl .url-title::before { display: none; }
  .exclusive-url.smallUrl h3 {
    font-size: .8em;
    margin-top: 20px;
  }
  .exclusive-url.smallUrl .url-title::before { display: none; }
  #recent-articles>.container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  #videos-condent .inner > * {
    max-width: 100%;
    flex: 0 0 100%;
  }
  #videos-condent .inner{ flex-direction: column; }
  #videos-condent .inner :first-child { margin-bottom: 15px; }
  #articles-list .article {
    width: 100%;
  }
  .recent-article, .article>figure {
    padding: 0;
    margin-bottom: 15px;
  }
  #recent-articles.row {
    margin-left: -15px;
    margin-right: -15px;
  }
  #contact-form>.card-body {
    border: 0;
    padding: 0;
  }
  #front-logo {
    display: block;
    position: absolute;
    top: 50px;
    bottom: auto;
    left: 60px;
    right: 10px;
    margin: auto;
    width: auto;
    max-width: 100%;
    text-align: center;
  }
  #front-logo > img {
    max-height: 100px;
    width: auto;
    max-width: 100%;
    margin: auto;
    display: inline-block;
  }
  #logo { display: none; }
  body:not(.home) main>.container {
    padding: 60px 30px;
  }
  .video > .col-md-6 {
    padding: 0;
    margin-bottom: 15px;
  }
  #videos .title,
  #offers .offer .card-title,
  #pdf .pdf figcaption a > h3 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  #offers-content .card { flex-direction: column; }
  #offers-content .card img,
  #offers-content .card .card-body {
    max-width: 100%;
    flex: 0 0 100%;
    margin-bottom: 15px;
    padding-left: 0;
    text-align: center;
  }
  #offers .expires-title {
    text-align: center;
  }
  .countdown > .col-sm-2 { width: 50%; }
  #pdf-content .figure { flex-direction: column; }
  #pdf-content .figure > a,
  #pdf-content .figure > figcaption {
    max-width: 100%;
    flex: 0 0 100%;
  }
  body.contact .form-group.actions {
    flex-direction: column;
    align-items: center;
  }
  body.contact #contact-form button.btn,
  body.contact #contact-form button.button {
    margin: 15px auto;
  }
  body.contact .contact-website .cd-value a { font-size: 13px;}
}
@media screen and (max-width: 320px) {
  .offer .interested { margin-top: 10px }
}
/* ============================================================================= */

/* ======================= DISPLAY NONE =====================================  */
.carousel-indicators,#header-top .container,#header-middle,
#main-nav > #logo,#hero-title #current-page-title,
#gallery-content .row > .image,#videos-condent .inner > .title,
#videos-condent .inner > .content,.expoUrl .btn:not(.inverted),
.expoUrl .button:not(.inverted),.offer .button:not(.inverted),
.offer .btn:not(.inverted),.pdf .btn:not(.inverted),
.pdf .button:not(.inverted),#articles-list .btn:not(.inverted),
#articles-list .button:not(.inverted),label[for=search-input] {
  display: none!important;
}
/* ========================= DEVELOPMENT ONLY ================================== */
/* #cookie-notice { display: none; } */