/* GENERAL */
body {
  padding-top: 50px;
}

.site-width {
  max-width: 1140px; width: 95%;
  margin: auto;
}
/* /GENERAL */

/* HEADER */
header {
  position: fixed; top: 0; left: 0; z-index: 10000;
  width: 100%; height: 50px;
  background: #333;
}

header .logo {
  float: left;
  margin-top: 5px; margin-right: 20px;
}
header .logo:hover {
  border-bottom: 0;
}
header .logo img {
  display: block;
}

header .mm {
  float: right;
  width: 30px; height: 30px;
  margin-top: 9px;
  color: #FFF; font-size: 20px; text-align: center; line-height: 32px;
  border: 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header .mm i {
  margin: 0;
}
header .mm:hover {
  background-color: #666;
  border: 0;
}

.h-simple {
  text-align: center !important;
}
.h-simple .logo {
  float: none !important;
  margin: 0 !important;
}
.h-simple .logo img {
  display: inline-block !important;
  margin-top: 5px !important;
}

@media screen and (min-width: 1024px) {
  header .mm {
    display: none;
  }
}
/* /HEADER */

/* MENU */
.menu {
  display: none;
  line-height: 50px;
}

.menu .menu-item {
  float: left;
  margin-right: 35px;
}
.menu .menu-item a, .menu a.right {
  display: block;
  color: #FFF; font-size: 13px; font-weight: 700;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.menu .menu-item a:hover, .menu a.right:hover {
  color: #14BF9D;
  border-bottom: 1px solid transparent;
}
.menu .menu-item a i {
  float: right;
  margin-top: 16px; margin-left: 12px;
}

.menu .menu-item .menu-submenu {
  display: none;
  position: absolute; top: 50px; left: -20px;
  width: 200px;
  background-color: #333;
}
.menu .menu-item .menu-submenu a {
  padding: 0 12px;
  line-height: 36px;
}
.menu .menu-item .menu-submenu a i {
  margin-top: 12px;
}
.menu .menu-item .menu-submenu a:hover {
  color: #FFF;
  background-color: #14BF9D;
}

.menu .menu-item .menu-submenu .menu-subsubmenu {
  display: none;
  position: absolute; top: 0; left: 200px;
  width: 150px;
  background-color: #666;
}
.menu .menu-item .menu-submenu .menu-subsubmenu a {
  line-height: 30px;
}

.menu a.right {
  float: right;
  margin-left: 28px; margin-right: 0;
}

@media screen and (min-width: 1024px) {
  .menu {
    display: block;
  }
}
/* /MENU */

/* MENU MOBILE */
.menu-mobile {
  display: none;
  position: fixed; top: 50px; left: 0;
  width: 100%;
  padding: 3px 8px;
  background-color: #333;
  border-top: 1px solid #666;
}
.menu-mobile a {
  display: block;
  padding: 5px 15px; margin: 6px 0;
  line-height: 26px;
  color: #FFF; font-size: 13px; font-weight: 700;
  background-color: #666;
  border: 0;
  border-radius: 7px;
  transition: all 0.3s ease;
}
.menu-mobile a i {
  float: right;
  margin-top: 0px;
  font-size: 18px;
}
.menu-mobile a:hover {
  background-color: #14BF9D;
  border: 0;
}

.menu-mobile a.mm-login i {
  margin-top: 4px;
}

.menu-mobile .mm-submenu {
  display: none;
}
.menu-mobile .mm-submenu a {
  line-height: 18px;
  background-color: #494949;
}
.menu-mobile .mm-submenu a i {
  margin-top: -4px;
}
.menu-mobile .mm-submenu a:hover {
  background-color: #121212;
}
.menu-mobile .mm-subsubmenu a {
  background: none;
}
.menu-mobile .mm-subsubmenu a:hover {
  background: #121212;
}

.mmshow {
  display: block;
}

@media screen and (min-width: 1024px) {
  .menu-mobile {
    display: none;
  }
}
/* /MENU MOBILE */

/* FOOTER */
footer {
  padding: 30px 0 170px;
  text-align: center;
  background: #FFF url('../images/footer-color.png') repeat-x bottom;
}
footer a {
  display: inline-block;
  margin: 0 10px;
  font-size: 13px;
}
footer .social {
  margin-bottom: 20px;
  text-align: center;
}
footer .social a {
  display: inline-block;
  width: 32px; height: 32px;
  margin-left: 15px; margin-right: 0;
  line-height: 32px; text-align: center; font-size: 16px; color: #333;
  background-color: #F2F2F2;
  border-radius: 100px;
}
footer .social a i {
  margin-right: 0;
}
footer .f-bottom {
  padding-top: 12px; margin-top: 10px;
  text-align: left;
  border-top: 1px dotted #CCC;
}

footer .f-bottom .logos {
  margin-top: 2px;
}
footer .f-bottom .logos img {
  display: block;
  width: 48px;
  margin: auto;
}
footer .f-bottom .logos img:nth-of-type(2) {
  width: 256px;
  margin: 8px 0 0;
}

footer .f-static {
  margin-top: 10px; padding-top: 10px;
  color: #666; font-size: 11px; text-align: center;
  border-top: 1px dotted #CCC;
}

footer .f-middle {
  padding-top: 12px; margin-top: 20px;
  border-top: 1px dotted #CCC;
}
footer .f-middle h3 {
  display: block;
  margin-bottom: 10px;
  font-weight: 700; font-size: 15px;
}
footer .f-middle a {
  display: inline-block;
  margin: 3px 7px 3px 0;
}
footer .f-middle a:hover {
  border-bottom: 0;
}
footer .f-middle a img {
  height: 50px;
}

.simple .f-bottom {
  margin-top: 0 !important; padding-top: 0 !important;
  border-top: 0 !important;
}
.simple .f-bottom .logos {
  text-align: center !important;
}
.simple .f-bottom .logos img {
  display: inline-block !important;
  margin-right: 15px !important;
}

@media screen and (min-width: 768px) {
  footer {
    text-align: left;
  }
  footer a {
    margin: 0; margin-right: 20px;
  }
  footer .social {
    float: right;
    margin-top: -8px; margin-bottom: 0;
  }
  footer .social a {
    display: block; float: left;
    width: 32px; height: 32px;
    margin-left: 15px; margin-right: 0;
    line-height: 32px; text-align: center; font-size: 16px; color: #333;
    background-color: #F2F2F2;
    border-radius: 100px;
    transition: all 0.3s ease;
  }
  footer .social a:hover {
    color: #FFF;
    background-color: #14BF9D;
  }
  
  footer .f-bottom .logos {
    width: auto;
    margin-bottom: 0; margin-right: 10px;
  }

  footer .f-bottom .logos img {
    display: inline-block; width: auto;
    margin-right: 15px;
  }
  footer .f-bottom .logos img:nth-of-type(2) {
    margin-top: 0;
  }
}
/* /FOOTER */

/* NEWSLETTER */
.newsletter {
  padding: 20px 0;
  color: #FFF;
  background-color: #14BF9D;
}
.newsletter h4 {
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
}

.newsletter .n-left {
  float: left; width: 100%;
  font-size: 14px;
}
.newsletter .n-right {
  float: right; width: 100%;
  margin-top: 15px;
}

.newsletter .n-left i {
  display: block; float: left;
  width: 36px; height: 36px;
  margin-right: 15px;
  color: #14BF9D; line-height: 36px; text-align: center; font-size: 16px;
  background-color: #FFF;
  border-radius: 100px;
}

.newsletter .n-right input[type='text'] {
  display: block; float: left;
  width: 60%; height: 34px;
  padding: 0 12px;
  border: 1px solid #FFF;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.newsletter .n-right input[type='submit'] {
  display: block; float: left;
  width: 40%; height: 34px;
  font-weight: 700; color: #FFF; text-transform: uppercase; font-size: 14px;
  background-color: #37E2C0;
  border: 1px solid #37E2C0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  cursor: pointer; cursor: hand;
  transition: all 0.3s ease;
}
.newsletter .n-right input[type='submit']:hover, .newsletter .n-right input[type='submit']:focus {
  border-radius: 0;
}

@media screen and (min-width: 480px) {
  .newsletter .n-right input[type='text'] {
    width: 70%;
  }
  .newsletter .n-right input[type='submit'] {
    width: 30%;
  }
}
@media screen and (min-width: 640px) {
  .newsletter .n-left {
    width: 42%;
  }
  .newsletter .n-right {
    width: 55%;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .newsletter .n-left {
    width: 50%;
  }
  .newsletter .n-right {
    width: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .newsletter .n-left {
    width: 60%;
  }
  .newsletter .n-right {
    width: 35%;
  }
}
/* /NEWSLETTER */

/* VISIT */
.visit {
  padding: 30px 0;
  background-color: #333;
}

.visit .v-item {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.visit .v-item h2 {
  display: block;
  margin-bottom: 20px;
  color: #FFF; font-size: 22px; font-weight: 700;
}

.visit .v-item a.vi-a {
  display: block;
  height: 28px;
  overflow: hidden;
  padding: 0 10px;
  margin-bottom: 6px;
  color: #FFF; font-weight: 300; font-size: 13px; line-height: 26px; white-space: nowrap; text-overflow: ellipsis;
  background-color: #666;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.visit .v-item a.vi-a:hover {
  background-color: #333;
  border-color: #666;
}

.visit .v-item p {
  margin: 0; padding: 0; margin-bottom: 30px;
  color: #FFF; font-size: 15px;
}
.visit .v-item img {
  display: inline-block;
  width: 25%;
  margin: 1%;
}

.visit .v-partners {
  text-align: center;
}
.visit .v-partners a:hover {
  border: 0;
}
.visit .v-partners img {
  max-width: 110px;
  padding: 3px;
  border: 3px solid #0151A8;
  background-color: #14BF9D;
}

@media screen and (min-width: 480px) {
  .visit .v-item {
    width: 46%;
    margin-right: 4%; margin-bottom: 20px;
  }
  .visit .v-partners {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .visit {
    padding: 60px 0;
  }
  .visit .v-item {
    width: 29.333333333%;
    margin-bottom: 0;
  }
  .visit .v-partners {
    padding-top: 20px;
  }
}
/* /VISIT */

/* STATIC */
.static {
  margin: 25px 0;
}
.static h1 {
  display: block;
  padding: 10px 20px;
  font-weight: 400; font-size: 20px; text-indent: 4px; color: #FFF;
  background-color: #14BF9D;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.static .content {
  padding: 15px;
  background-color: #FFF;
  border-bottom-left-radius: 10px;
}

.static .content .col-left {
  float: left; width: 100%;
}
.static .content .col-right {
  float: right; width: 100%;
  margin-top: 15px;
  font-size: 13px; line-height: 24px;
}

.static .content .col-left h2 {
  display: block;
  margin-bottom: 15px;
  font-size: 15px; font-weight: 700;
}
.static .content .col-left a {
  display: block;
  margin: 10px 0; padding: 8px 12px 8px 20px;
  color: #333;
  background-color: #F2F2F2;
  border-bottom: 0;
  transition: all 0.3s ease;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.static .content .col-left a:hover {
  color: #FFF;
  background-color: #14BF9D;
  border-bottom: 0;
}

.static .content .col-right p {
  margin: 7px 0;
}
.static .content .col-right p:first-of-type {
  margin-top: 0;
}

.static .content .col-right iframe {
  display: block;
  width: 100%;
  margin: 15px 0;
  border: 1px solid transparent;
}

@media screen and (min-width: 640px) {
  .static .content .col-left {
    width: 20%;
  }
  .static .content .col-right {
    width: 76%;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .static {
    margin: 55px 0;
  }
  .static .content {
    padding: 30px;
  }
}
/* /STATIC */

/* CONTACT */
.contact .images-about {
  margin-bottom: 20px;
}
.contact .images-about img {
  display: block; width: 100%;
  max-width: 410px;
  padding: 5px 0; margin: auto;
}

.contact .form {
  margin-top: 25px;
}

.contact .c-item {
  margin-bottom: 20px;
  font-weight: 700; font-size: 13px;
}

.contact .c-item input[type='text'], .contact .c-item input[type='password'], .contact .c-item input[type='file'], .contact .c-item textarea {
  display: block;
  width: 100%; height: 38px;
  margin-top: 10px; padding: 0 10px;
  background-color: #E2E2E2;
  border: 1px solid #E2E2E2;
}
.contact .c-item textarea {
  width: 100%; height: 120px;
}
.contact .c-item input[type='file'] {
  padding: 0;
}
.contact .c-item input[type='submit'] {
  display: block;
  height: 34px; text-transform: uppercase;
  padding: 0 20px;
  color: #FFF; font-size: 14px;
  background-color: #34495E;
  border: 1px solid #34495E;
  border-radius: 100px;
  cursor: pointer; cursor: hand;
  transition: all 0.3s ease;
}
.contact .c-item input[type='submit']:hover, .contact .c-item input[type='submit']:focus {
  background-color: #537AAE;
  border-color: #537AAE;
}

.contact .c-security img {
  float: left;
  margin-right: 12px;
}
.contact .c-security input {
  width: 100px !important;
  text-align: center;
}

.contact .c-separator {
  padding-top: 30px; margin-top: 40px;
  border-top: 1px solid #DDD;
}

@media screen and (min-width: 640px) {
  .contact .images-about img {
    float: left; width: 50%;
    padding: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .contact .c-item input[type='text'], .contact .c-item input[type='password'], .contact .c-item input[type='file'], .contact .c-item textarea {
    width: 60%;
  }
  .contact .c-item textarea {
    width: 75%;
  }
}
/* /CONTACT */

/* ERROR PAGE */
.e404 .col-right {
  width: 100% !important;
  text-align: center; font-size: 15px !important;
}
.e404 .col-right a {
  display: block;
  width: 150px; height: 36px;
  margin: auto; margin-top: 20px;
  line-height: 36px; text-align: center; font-weight: 700; text-transform: uppercase; color: #FFF; font-size: 14px !important;
  background-color: #14BF9D;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.e404 .col-right a:hover {
  border-radius: 0;
}
/* /ERROR PAGE */

/* CHANGE LANGUAGE */
 .change-language {
  display: block;
  margin-right: 8px; margin-top: 15px;
  border: 1px solid #666;
}
.change-language img {
  display: block;
}
.change-language:hover {
  opacity: .8;
  border: 1px solid #666;
}

.more-languages {
  display: none;
  top: 50px; left: -10px;
  background-color: #333;
}
.more-languages a {
  display: block;
  padding: 8px 10px;
  border-bottom: 0; border-top: 1px solid rgba(255, 255, 255, 0.1);;
  transition: all 0.3s ease;
}
.more-languages a img {
  display: block;
}
.more-languages a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .change-language {
    margin-right: 0; margin-left: 15px; margin-top: 16px;
  }

  .more-languages {
    left: 13px;
  }
}
@media screen and (min-width: 1200px) {
  .change-language {
    margin-left: 22px;
  }
}
/* /CHANGE LANGUAGE */

/* COOKIE NOTIFICATION */
.show-cookie {
  display: none;
  position: fixed; left: 0; bottom: 0; z-index: 1000000;
  width: 100%;
  padding: 15px; padding-right: 90px;
  background-color: #14BF9D;
  box-shadow: 0 0 3px rgba(31, 31, 31, 0.25);
}

.show-cookie span {
  display: block;
  margin-bottom: 15px;
  color: #FFF; font-size: 16px; font-weight: 400;
}

.show-cookie a {
  display: block;
  width: 120px; height: 32px;
  line-height: 32px; text-align: center; font-size: 14px; font-weight: 700; text-transform: uppercase;
  color: #333;
  background-color: #FFF;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.show-cookie a:hover {
  border-radius: 100px;
}

@media screen and (min-width: 768px) {
  .show-cookie {
    padding: 15px 130px 15px 20px;
  }
}
/* /COOKIE NOTIFICATION */

/* /ADDON FERJOLT */
.partneret {
    width: 100%; 
    height: auto; 
    min-height: 50px; 
    padding: 20px 10px 30px 10px;
    background: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-top: 1px dotted #f8f8f8;
}
.partneret img {
    height: 50px;
    margin-right: 20px;
    border: 0;
    
}
.partneret a {
    border: 0;
    text-decoration: none;
}
.partneret h3{
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
    text-align: left;
    color: #14bf9d;
}
.vitiri{
    width: 100%;
    height: 150px;
    background: url(../images/vitiri1.png) repeat-x;
    position: absolute;
    z-index: 9999;
}
@media screen and (max-width: 767px) {
    .vitiri{
        display: none;
    }
}
/* /ADDON FERJOLT */
