/*
Document   : layout
Author     : Little Neko
Description: layout styles

*/
/* Table of Content
==================================================

#BOOSTRAP CUSTOMIZATION
#NEKO CSS FRAMEWORK
#TYPOGRAPHY
#GENERAL
#PARALLAX STUFF
#HEADER
#MAIN MENU
#FOOTER
#SLIDERS
#BLOG
#NEWS
#PAGES
#PORTFOLIO
#FORMS
#MISCELANIOUS

*/
/*
* ============================================================================================================================
== BUBBLE WITH A BORDER AND TRIANGLE
** ============================================================================================================================ */
.underlined {
  text-decoration: underline;
}

.radio-lg {
  width: 1.2em;
  height: 1.2em;
}

/* THE SPEECH BUBBLE
------------------------------------------------------------------------------------------------------------------------------- */
.triangle-border {
  position: relative;
  padding: 15px;
  border: 3px solid #f39c12;
  color: #333;
  background: #fff;
  /* css3 */
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

/* Variant : for left positioned triangle
------------------------------------------ */
.triangle-border.left {
  margin-left: 30px;
}

/* Variant : for right positioned triangle
------------------------------------------ */
.triangle-border.right {
  margin-right: 30px;
}

/* THE TRIANGLE
------------------------------------------------------------------------------------------------------------------------------- */
.triangle-border:before {
  content: "";
  position: absolute;
  bottom: -20px;
  /* value = - border-top-width - border-bottom-width */
  left: 40px;
  /* controls horizontal position */
  border-width: 20px 20px 0;
  border-style: solid;
  border-color: #f39c12 transparent;
  /* reduce the damage in FF3.0 */
  display: block;
  width: 0;
}

/* creates the smaller  triangle */
.triangle-border:after {
  content: "";
  position: absolute;
  bottom: -13px;
  /* value = - border-top-width - border-bottom-width */
  left: 47px;
  /* value = (:before left) + (:before border-left) - (:after border-left) */
  border-width: 13px 13px 0;
  border-style: solid;
  border-color: #fff transparent;
  /* reduce the damage in FF3.0 */
  display: block;
  width: 0;
}

/* Variant : top
------------------------------------------ */
/* creates the larger triangle */
.triangle-border.top:before {
  top: -20px;
  /* value = - border-top-width - border-bottom-width */
  bottom: auto;
  left: auto;
  right: 40px;
  /* controls horizontal position */
  border-width: 0 20px 20px;
}

/* creates the smaller  triangle */
.triangle-border.top:after {
  top: -13px;
  /* value = - border-top-width - border-bottom-width */
  bottom: auto;
  left: auto;
  right: 47px;
  /* value = (:before right) + (:before border-right) - (:after border-right) */
  border-width: 0 13px 13px;
}

/* Variant : left
------------------------------------------ */
/* creates the larger triangle */
.triangle-border.left:before {
  top: 10px;
  /* controls vertical position */
  bottom: auto;
  left: -30px;
  /* value = - border-left-width - border-right-width */
  border-width: 15px 30px 15px 0;
  border-color: transparent #f39c12;
}

/* creates the smaller  triangle */
.triangle-border.left:after {
  top: 16px;
  /* value = (:before top) + (:before border-top) - (:after border-top) */
  bottom: auto;
  left: -10px;
  /* value = - border-left-width - border-right-width */
  border-width: 9px 21px 9px 0;
  border-color: transparent #fff;
}

/* Variant : right
------------------------------------------ */
/* creates the larger triangle */
.triangle-border.right:before {
  top: 10px;
  /* controls vertical position */
  bottom: auto;
  left: auto;
  right: -30px;
  /* value = - border-left-width - border-right-width */
  border-width: 15px 0 15px 30px;
  border-color: transparent #f39c12;
}

/* creates the smaller  triangle */
.triangle-border.right:after {
  top: 16px;
  /* value = (:before top) + (:before border-top) - (:after border-top) */
  bottom: auto;
  left: auto;
  right: -21px;
  /* value = - border-left-width - border-right-width */
  border-width: 9px 0 9px 21px;
  border-color: transparent #fff;
}

/* BOOSTRAP CUSTOMIZATION
================================================== */
.navbar {
  margin-bottom: 0;
}

.navbar-fixed-top {
  top: 60px;
}

.navbar-default {
  background: none;
  border: none;
  min-height: 0
}

.btn:active,
.btn.active {
  -webkit-box-shadow: none;
  box-shadow: none
}

.container .jumbotron {
  border-radius: 0;
}

.jumbotron {
  font-size: 16px;
}

.jumbotron h1 {
  text-align: left;
}

/*forms*/
.form-control {
  -webkit-box-shadow: none;
  box-shadow: none
}

.has-error div {
  padding: 5px;
  margin-bottom: 20px;
  display: block;
}

/*tabs*/
/** expand the link to fill the whole tab **/
.panel-title a {
  display: block;
  padding: 10px 15px;
  margin: -10px -15px;
  outline: none;
}

.panel-default>.panel-heading {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.panel-default {
  border: none;
}

.navbar-default .navbar-toggle {
  margin-top: 22px;
}

/*** MEDIA QUERIES ***/
@media(max-width:767px) {}

@media(min-width:768px) {}

@media(min-width:992px) {}

@media(min-width:1200px) {}

/*** END MEDIA QUERIES ***/
/* END BOOSTRAP CUSTOMIZATION
================================================== */
/* NEKO CSS FRAMEWORK
================================================== */
.fixed-top {
  top: 0;
  z-index: 1100;
}

.image-max-width80 {
  max-height: 300px;
  align-items: center;
}

.img-responsive-max-180 {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: auto;
  align-content: center;
}

.img-responsive-max-110 {
  display: block;
  width: 100%;
  max-width: 110px;
  margin: auto;
  align-content: center;
}

.img-max {
  width: 100%;
  max-width: 100%
}

.ml {
  margin-left: 10px;
}

.mr {
  margin-right: 10px;
}

.pl {
  padding-left: 30px;
}

.pr {
  padding-right: 30px;
}

.topicItem .inactiveLessonWrapper {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  left: 15px;
  font-size: 21px;
  background: rgba(51, 51, 51, 0.9);
  background-image: url("../images/icons/baseline-https-24px.6ea7b90f8a1a.svg");
  background-position: top 20px center;
  background-repeat: no-repeat;
  background-size: 100px;
  z-index: 1;
}

.topicItem .inactiveLessonWrapper p {
  position: absolute;
  top: 70%;
  left: inherit;
  transform: translate(0%, -70%);
  padding-right: 15px;
  text-align: center;
  font-weight: 700;
  color: white;
}

.topicItem {
  margin-top: 10px;
  background-color: white;
}

.topicItem h3 {
  padding-top: 5px;
}

.topicItem a:hover {
  text-decoration: none;
}

.topicItem .active a:hover h3 {
  color: black;
  text-decoration: underline;
}

.topicItem img.fullWidth {
  width: 100%;
  max-width: 100%
}

.topicItem img.maxHeight {
  display: block;
  max-height: 100px;
  margin: auto;
  align-content: center;
  align-items: center;
}

.topicItem div.text {
  padding: 5px 10px 0 10px;
}

.topicItem .inactive img {
  opacity: 0.25;
}

.topicItem .inactive h3 {
  color: dimgray;
}

.topicItem .active {
  border: 2px solid #f39c12;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.topicItem .active:hover {
  -moz-box-shadow: 0 0 0px 2px #EEA400;
  -webkit-box-shadow: 0 0 0px 2px #EEA400;
  box-shadow: 0 0 0px 2px #EEA400;
}

.topicItem .tag {
  font-size: 12px;
  text-transform: uppercase;
  color: white;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 2px;
  padding-bottom: 2px;
  border: 2px solid white;
  float: right;
  margin-right: 5px;
}

.topicItem .tagFree {
  background-color: #659c2a;
}

.topicItem .tagE {
  background-color: #f0c401;
}

.topicItem .tagI {
  background-color: #f27302;
}

.topicItem .tagA {
  background-color: #a54547;
}

.topicItem .inactive .lessonNumber {
  color: gray;
}

.topicItem .active .lessonNumber {
  color: #484848;
}

.lessonCoverInaktiv {
  background: top center no-repeat url("../images/inaktiv.d7dd1d55561d.jpg");
  background-size: cover;
  align-items: center;
  min-height: 125px;
}

.lessonCoverE {
  background: top center no-repeat url("../images/alapfok.faedb0556202.jpg");
  background-size: cover;
  align-items: center;
  min-height: 125px;
}

.lessonCoverI {
  background: top center no-repeat url("../images/kozepfok.01fe9f35a1a3.jpg");
  background-size: cover;
  align-items: center;
  min-height: 125px;
}

.lessonCoverA {
  background: top center no-repeat url("../images/felsofok.80e728ebce43.jpg");
  background-size: cover;
  align-items: center;
  min-height: 125px;
}

.noBorder {
  border: none;
}

.width100 {
  width: 100%;
}

.small-shadow {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

.vocab-image {
  max-height: 250px;
  max-width: 250px;
  height: auto !important;
  width: auto !important;
  border: 1px solid #ccc;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
}

.vocab-small-image {
  max-height: 170px;
  max-width: 170px;
  height: auto !important;
  width: auto !important;
  border: 1px solid #ccc;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
}

.vertical-middle {
  display: inline;
  vertical-align: middle;
  float: none;
}

.vertical-bottom {
  display: inline;
  vertical-align: bottom;
  float: none;
}

.vocab-shadow {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
}

.mainPageLogoBox .brandLogo {
  background-color: transparent;
  max-height: 60px;
  display: inline-block;
}

.footer-brand-logo {
  max-height: 50px;
  min-height: 30px;
  padding: 5px;
}

.am {
  margin: auto;
}

.width30p {
  width: 30%;
}

.center {
  margin: auto;
  text-align: center;
  align-content: center;
}

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

.share {
  margin-top: 20px;
}

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

.tableWithPadding {
  padding-left: 15px;
  padding-right: 15px;
}

.lessonNumber {
  display: block;
  font-size: 80px;
  font-family: 'Roboto', sans-serif;
  border-radius: 50%;
  padding-top: 45px;
  width: 125px;
  height: 125px;
  vertical-align: middle;
  text-align: center;
  background-color: #fff;
}

.saleRoundedBig {
  display: block;
  font-size: 60px;
  font-family: 'Roboto', sans-serif;
  border-radius: 50%;
  padding-top: 45px;
  width: 150px;
  height: 150px;
  vertical-align: middle;
  text-align: center;
  color: #f5f5f5;
  background-color: #c12e2a;
}

.saleRounded {
  display: block;
  font-size: 50px;
  font-family: 'Roboto', sans-serif;
  border-radius: 50%;
  padding-top: 20px;
  width: 100px;
  height: 100px;
  vertical-align: middle;
  text-align: center;
  color: #f5f5f5;
  margin-top: -20px;
  background-color: #c12e2a;
}

.numberRounded {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  padding-top: 6px;
}

.vocab-rounded {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: block;
  text-align: center;
  padding-top: 10px;
}

.vocab-button {
  background: #FFF;
  color: #f39c12;
  border: 2px solid #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(238, 190, 36, 0.9);
}

.vocab-button:hover {
  color: #FFF;
  text-shadow: none;
  border-color: #f39c12;
  background: #f39c12
}

.vocab-field {
  color: #f39c12;
  margin: 5px;
}

.iconGap {
  padding-left: 10px;
  padding-right: 10px;
}

.socialIcons {
  margin-top: 10px;
}

.socialIcons i {
  padding-left: 20px;
}

.iconRounded {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  padding-top: 11px;
}

.numberRounded:before {
  margin: auto;
  text-align: center;
}

.iconRounded:before {
  margin: auto;
  text-align: center;
}

.iconBig {
  font-size: 50px;
}

.iconBig.iconRounded {
  width: 112px;
  height: 112px;
  padding-top: 29px;
  border-width: 4px;
}

.boxFeature {
  margin-bottom: 33px;
}

/* v2 */
.boxFeature-2 {
  text-align: center;
}

.boxFeature-2 i {
  margin-bottom: 22px;
  display: block;
}

.boxFeature-2 p {
  font-size: 12px;
}

.boxContent {
  padding: 22px;
}

/*** utilies classes ***/
section {
  margin-top: -1px;
  margin-bottom: -1px;
}

.font-24 {
  font-size: 24px!important;
}

.p0 {
  padding: 0;
}

.m0 {
  margin: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb05 {
  margin-bottom: 0.5em;
}

.mb15 {
  margin-bottom: 1.5em;
}

.mb10 {
  margin-bottom: 1em;
}
.mb20em {
  margin-bottom: 2em;
}
.mb30 {
  margin-bottom: 3em;
}

.mb40 {
  margin-bottom: 4em;
}

.mb60 {
  margin-bottom: 6.5em;
}

.mt10px {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt15 {
  margin-top: 1.5em;
}

.mt10 {
  margin-top: 1em;
}

.mt05 {
  margin-top: 0.5em;
}

.mt30 {
  margin-top: 3em;
}

.mt40 {
  margin-top: 4em;
}

.mt50 {
  margin-top: 5em;
}

.mt60 {
  margin-top: 6em;
}

.mtb40px {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mt30px {
  margin-top: 30px;
}

.mt5px {
  margin-top: 5px;
}

.mr15 {
  margin-right: 15px;
}

.noMargin {
  margin: 0;
}

.p20 {
  padding: 20px;
}

.paddingTop13px {
  padding-top: 13px;
}

.paddingBottom10px {
  padding-bottom: 10px;
}

.paddingTop {
  padding-top: 20px;
}

.pt20 {
  padding-top: 20px;
}

.ctaBoxFullwidth.pt20 {
  padding-top: 20px;
}

.paddingBottom {
  padding-bottom: 20px;
}

.noPaddingBottom {
  padding-bottom: 0 !important;
}

.noPaddingTop {
  padding-top: 0
}

.noPaddingLeft {
  padding-left: 0;
}

.margin10px {
  margin: 10px;
}

.padding10px {
  padding: 10px;
}

.marginTopSidePadding {
  margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.marginSidePadding {
  padding-left: 15px;
  padding-right: 15px;
}

.marginSideSmallPadding {
  padding-left: 10px;
  padding-right: 10px;
}

.smallPages {
  min-height: 66vh;
}

.center-pills {
  display: inline-block;
}

.mtb30 {
  margin: 30px auto;
}

/*** end utilies classes ***/
/*** MEDIA QUERIES ***/
@media(max-width:767px) {}

@media(min-width:768px) {
  .isotopeItem .iconBig {
    font-size: 33px;
  }

  .isotopeItem .iconBig.iconRounded {
    width: 80px;
    height: 80px;
    padding-top: 18px;
  }

  .isotopeItem .iconLinks a span {
    font-size: 10px;
  }
}

@media(min-width:992px) {

  .iconBig,
  .isotopeItem .iconBig {
    font-size: 66px;
  }

  .iconBig.iconRounded,
  .isotopeItem .iconBig.iconRounded {
    width: 125px;
    height: 125px;
    padding-top: 28px;
  }

  .isotopeItem .iconLinks a span {
    font-size: 12px;
  }
}

@media(min-width:1200px) {}

/*** END MEDIA QUERIES ***/
/* NEKO CSS FRAMEWORK
================================================== */
/* TYPOGRAPHY
================================================== */
.body-bold {
  font-size: 16px;
  line-height: 22px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 60px 0 0 0;
}

i {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
legend {
  margin: 0;
  font-weight: 400;
  word-spacing: 3px;
  font-family: 'Roboto', sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.legend {
  margin: 0;
  font-weight: 400;
  word-spacing: 3px;
  font-family: 'Roboto', sans-serif;
}

h1 {
  font-size: 44px;
  line-height: 1em;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  /*text-transform:uppercase;*/
  position: relative;
  letter-spacing: 0.1em;
  margin-bottom: 17px;
  padding-top: 20px;
}

.big-size {
  font-size: 20px;
  line-height: 22px;
}

.big-big-size {
  font-size: 24px;
  line-height: 1em;
}

.extra-size {
  font-size: 40px;
  line-height: 1em;
  font-family: 'Roboto', sans-serif;
}

.extra-extra-size {
  font-size: 100px;
  line-height: 1em;
}

h1.noSubtitle {
  margin-bottom: 90px;
}

.bigTitle,
h1.bigTitle,
h2.bigTitle,
h3.bigTitle {
  font-weight: 400;
  font-size: 5em;
  line-height: 1em;
  text-transform: uppercase;
  padding: 0.5em 0;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.thinH3 {
  font-weight: 400;
  font-size: 26px;
}

.paralaxText h1 {
  font-size: 3em;
  font-weight: 400;
  line-height: 1.3em;
  text-align: left;
  padding: 1em 0 0;
  margin: 0;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.paralaxText p {
  font-size: 22px;
  letter-spacing: 1.8px;
  margin: 0;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.paralaxText.topBox {
  margin: 80px auto;
}

.pricingBloc h2 {
  font-family: 'Roboto', sans-serif;
}

.paralaxText blockquote {
  font-size: 33px;
  line-height: 1em;
  margin-bottom: 0;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  padding-left: 0;
  border: none;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
}

.speechBubble {
  font-size: 28px;
  line-height: 1em;
  font-weight: 400;
  font-family: 'Shadows Into Light Two', cursive;
  text-align: center;
  letter-spacing: 0.1em;
}

.vocab-help {
  font-size: 24px;
  line-height: 1em;
  font-weight: 400;
  font-family: 'Shadows Into Light Two', cursive;
  text-align: center;
  letter-spacing: 0.1em;
}

.vocab-help-extra {
  font-size: 50px;
  line-height: 1em;
  font-weight: 400;
  font-family: 'Shadows Into Light Two', cursive;
  text-align: center;
  letter-spacing: 0.1em;
}

.vocab-font-size {
  font-size: 20px;
  line-height: 1em;
  font-weight: 400;
  text-align: center;
  padding: 10px 0;
}

.saleParagraph {
  font-size: 28px;
  line-height: 34px;
  font-weight: 400;
  font-style: normal;
  font-family: 'Roboto', sans-serif;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.bigShadow {
  text-shadow: 0 0 30px #000000;
}

.bigParagraph {
  font-size: 34px;
  line-height: 40px;
}

.smallParagraph {
  font-size: 22px;
  line-height: 28px;
}

.crossTrough {
  text-decoration: line-through;
}

.footer-text {
  font-size: 12px;
}

h2 {
  font-size: 24px;
  line-height: 1em;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin-bottom: 17px;
}

h2.subTitle {
  font-size: 24px;
  line-height: 1em;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin-bottom: 90px;
  text-align: center;
}

h2.subTitle:after,
h1.noSubtitle:after {
  display: block;
  height: 1px;
  width: 400px;
  content: '';
  bottom: -37px;
  position: absolute;
  margin-left: -50px;
  left: 50%;
}

/* remove the underline on H1 when not needed */
h1.bigTitle:after,
.boxWrapper h1:after,
.pricingBloc h1:after,
.team h1:after,
.iconBoxV3 h1:after,
#sliderWrapper h1:after,
.fullwidthbanner-container h1:after,
.camera_caption h1:after,
.caption h1:after,
.bulle h1:after,
.iconBoxV2 .iconBox-body h1:after {
  content: none
}

h3,
legend {
  font-size: 21px;
  line-height: 22px;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

h4 {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 6px;
  font-style: normal;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
}

h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 1.116em;
  line-height: 1.5714em;
  margin-bottom: 0.916em;
}

h6 {
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2em;
  font-size: 1em;
  line-height: 1em;
}

h1 small,
h2 small,
h3 small,
h4 small {
  text-transform: none;
  font-size: 0.5em;
  font-weight: 400;
  color: inherit;
}

p,
ul {
  margin-top: 0;
  margin-bottom: 12px;
}

strong {
  font-weight: bold
}

.strong {
  font-weight: bold
}

li {
  line-height: inherit;
}

a:link,
a:visited {
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
}

a:hover,
a:active {
  text-decoration: underline;
}

ul.iconsList li a:hover {
  text-decoration: none;
}

a.readMore {
  display: block;
  margin-top: 0.75em;
  font-style: italic;
}

blockquote {
  font-size: 22px;
  line-height: 33px;
  margin-bottom: 0;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  padding: 0;
  border: none;
  text-align: left;
}

blockquote p {
  font-size: inherit;
}

blockquote small {
  font-size: 50%;
  display: inline;
}

blockquote:before {
  content: '\e928';
  font-family: 'custom-icons';
  margin-right: 0.5em;
}

blockquote:after {
  content: '\e929';
  font-family: 'custom-icons';
  margin-left: 0.5em;
}

.quoteRow blockquote:before,
.quoteRow blockquote:after {
  content: none;
}

hr {
  padding: 0;
  margin: 3em 0 3em 0;
}

.hero-unit blockquote {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
}

.divider {
  display: block;
  width: 100%;
}

.bold {
  font-weight: bold;
}

/* JOBS PAGE
================================================== */
.job-title {
  margin-top: 20px;
  margin-bottom: 0;
}

.job-subtitle {
  text-align: center;
  margin-bottom: 20px;
}

.job-apply {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 50px;
}

/* END JOBS PAGE
================================================== */
/* TERMS AND CONDITIONS
================================================== */
.termsAndCond {
  margin: 60px auto;
}

.termsAndCond h2 {
  text-align: center;
  font-weight: 600;
}

.termsAndCond h2,
.termsAndCond h3,
.termsAndCond h4 {
  margin: 40px auto 20px;
}

.termsAndCond h4 {
  font-size: 16px;
  font-weight: 600;
}

.termsAndCond li {
  margin-bottom: 15px;
}

.termsAndCond table {
  margin: 30px auto;
}

/* END TERMS AND CONDITIONS
================================================== */
/* Words
================================================== */
#result .vocab-help {
  font-size: 19px;
}

.audio-box {
  min-height: 270px;
}

/* END Words
================================================== */

/* END TYPOGRAPHY
================================================== */
/* GENERAL
================================================== */
.slice {
  padding-top: 33px;
}

/*** buttons ***/
.btn {
  text-transform: uppercase;
  padding: 15px 20px;
  font-size: 18px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.btn-inv {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.btn-lg {
  padding: 18px 23px;
  font-size: 22px;
}

.btn-sm {
  padding: 10px 13px;
  font-size: 12px;
  border-radius: 4px;
}

.btn-xs {
  padding: 4px 7px;
  font-size: 10px;
  border-radius: 4px;
}

.btn-link {
  text-transform: none;
  text-shadow: none;
  padding: 0;
}

.btn i {
  margin-right: 0.5em;
}

#next-button i {
  margin: 0;
}

/*** call to actioon ***/
.ctaBox {
  padding: 33px 11px;
}

.ctaBoxFullwidth {
  padding: 0;
}

.ctaBox a {
  margin-top: 22px;
}

.ctaBoxBig p {
  font-size: 18px;
  line-height: 24px;
}

.ctaBox h1 {
  font-size: 30px;
  line-height: 33px;
  margin-bottom: 0;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  padding-top: 1em;
  padding-bottom: 2em;
  border: none;
  text-align: center;
  letter-spacing: normal;
  text-transform: none;
}

/*** MEDIA QUERIES ***/
@media(max-width:767px) {
  .btn-lg {
    padding: 14px 18px;
    font-size: 18px;
  }
}

@media(min-width:768px) {
  .slice {
    padding: 90px 0;
  }
}

@media(min-width:992px) {
  .ctaBox a {
    float: right;
    margin-top: 0;
  }
}

@media(min-width:1200px) {}

/*** END MEDIA QUERIES ***/
/* END GENERAL
================================================== */
/* PARALLAX STUFF
================================================== */
#paralaxSlice1,
#paralaxSlice2,
#paralaxSlice4,
#paralaxSlice5,
#paralaxSlice6,
#paralaxSlice7,
#paralaxSlice8,
#paralaxSlice9,
#paralaxSlice10,
#paralaxSlice11,
#paralaxSlice12,
#homeFullScreen,
#paralaxSliceSale {
  width: 100%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: top center;
}

.maskParent {
  position: relative;
  height: 100%;
  width: 100%
}

.paralaxMask {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  background: rgba(0, 0, 0, 0.15);
}

/*** MEDIA QUERIES ***/
@media(max-width:767px) {}

@media(min-width:768px) {}

@media(min-width:992px) {}

@media(min-width:1200px) {

  #paralaxSlice1,
  #paralaxSlice2,
  #paralaxSlice3,
  #paralaxSlice4,
  #paralaxSlice5,
  #homeFullScreen,
  #paralaxSliceSale {
    background-attachment: fixed;
    background-position: 50% 0;
    background-size: cover;
  }
}

/*** END MEDIA QUERIES ***/
/* END PARALLAX STUFF
================================================== */
/* HEADER
================================================== */
.navbar-brand {
  padding: 12px 12px;
}

.navbar-brand img {
  height: 36px;
  margin: 0;
}

#main-menu .dropdown-menu li.divider {
  padding: 0;
}
/* END HEADER
================================================== */
/* MAIN MENU
================================================== */
.navbar-inverse {
  background-color: #2A2A2A;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:hover,
.navbar-inverse .navbar-nav>.active>a:focus {
  background-color: #2A2A2A;
  border-bottom: 3px solid #f39c12;
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:hover,
.navbar-inverse .navbar-nav>.open>a:focus {
  color:#fff;
  background-color: #2A2A2A;
}

.navbar-nav>li>a {
  padding-top: 26px;
  padding-bottom: 17px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 14px;
  vertical-align: middle;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-out;
}

#main-menu .navbar-nav > li > a i {
  font-size: 14px;
  line-height: 14px;
  padding-right: 6px;
}

.dropdown-menu>li>a {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}

.dropdown-menu .divider {
  margin: 6px 0;
}

.mobil-menu {
  padding-right: 63px;
}

.mobil-menu > a > i {
  font-size: 24px;
  line-height: 60px;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
}

/*** MEDIA QUERIES ***/
@media(max-width:767px) {
  .navbar-nav>li>a {
      padding-top: 12px;
      padding-bottom: 12px;
  }
  .navbar-inverse .navbar-nav>.active>a,
  .navbar-inverse .navbar-nav>.active>a:hover,
  .navbar-inverse .navbar-nav>.active>a:focus {
    border-bottom: 0;
  }
}

@media(min-width:992px) {}

@media(min-width:1200px) {}

/*** END MEDIA QUERIES ***/
/* END MAIN MENU
================================================== */
/* HOME
================================================== */
body#fullScreen {
  padding-top: 0
}

#mapWrapper {
  height: 350px;
}

#home .btn {
  min-width: 250px;
  text-transform: none;
  margin: 10px;
}

#homeFullScreen {
  height: 100%;
  display: table;
}

#homeFullScreen .maskParent {
  display: table;
}

#fullScreenSliderWrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  margin: auto;
}

.btn.homeBtn {
  position: relative;
  background: rgba(255, 255, 255, 0.25);
}

strong i {
  font-weight: bold;
}

.mainPageLogoBox h2 {
  color: white;
  display: inline-block;
}

#products .extra-size {
  font-weight: 600;
}

#products ul {
  list-style-type: none;
  padding-left: 15px;
  margin-top: 15px;
}

#products ul.mainList {
  margin-top: 50px;
}

#products ul.mainList li {
  margin-bottom: 40px;
  vertical-align: middle;
}

#products ul.mainList li span {
  max-width: 85%;
  margin-right: 20px;
  margin-top: 10px;
}

#products ul.mainList li i.circleIcon {
  border: 3px solid #f39c12;
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
  padding: 20px;
  min-width: 85px;
  min-height: 85px;
  text-align: center;
}

#products ul.mainList li i.circleIcon::before {
  position: absolute;
  top: calc(50% - 15px);
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
}

ul.mainList .subList {
  margin-left: 35px;
}

ul.mainList .subList li {
  text-indent: -1em;
  margin-left: 30px;
}

ul.mainList .subList li i {
  margin-right: 15px;
  vertical-align: middle;
}

h2.mtb30 {
  margin: 30px auto;
}

.iconXl {
  min-width: 100px;
  min-height: 100px;
}

.materialIcon {
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 80px;
  height: 80px;
}

.mainList .materialIcon {
  display: inline-block;
}

.dropdown-menu i {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.icon-clock {
  background-image: url("../images/icons/baseline-alarm_on-24px.70a7c705b829.svg");
}

.icon-clock2 {
  background-image: url("../images/icons/outline-access_time-24px-white.b109aed64464.svg");
}

.icon-questioning {
  background-image: url("../images/icons/baseline-how_to_reg-24px.fada0a176958.svg");
}

.icon-infinite {
  background-image: url("../images/icons/baseline-all_inclusive-24px.3e3375db502d.svg");
}

.icon-thumbUp {
  background-image: url("../images/icons/outline-thumb_up-24px.4721e95155b8.svg");
}

.icon-learn {
  background-image: url("../images/icons/outline-speaker_notes_off-24px-white.ea225f03c323.svg");
}

.icon-school {
  background-image: url("../images/icons/outline-school-24px.60f518ca194a.svg")
}

.icon-doubleCheck {
  background-image: url("../images/icons/baseline-done_all-24px.bad5951857f1.svg");
}

.icon-words {
  background-image: url("../images/icons/outline-library_books-24px.1632de6de6b6.svg");
}

.icon-pictures {
  background-image: url("../images/icons/outline-broken_image-24px.79d09fd755ba.svg");
}

.icon-sound {
  background-image: url("../images/icons/outline-hearing-24px.e75f595df2fc.svg");
}

.icon-situations {
  background-image: url("../images/icons/outline-departure_board-24px.28fbc65c6a27.svg");
}

/*** References ***/
#references {
  color: white;
}

#references h2 {
  color: white;
}

.mobileBtn {
  display: none;
}

/*** Home page owl carousel ***/
.owl-theme .owl-dots .owl-dot {
  outline: none !important;
}

/* END HOME
================================================== */


/* NEMET NYELVI 1x1
================================================== */
.lesson-tests .custom-pagination {
  margin-top: 20px;
}

.lesson-tests .custom-pagination ul li a {
  padding: 7px 12px;
}

.result-img img {
  max-width: 70px;
  max-height: 70px;
}

.yellow-btn-small a {
  padding: 7px 12px;
  font-size: 14px;
}

#lesson-tabs li a {
  text-align: center;
  width: 100px;
  padding-left: 0;
  padding-right: 0;
}

@media(max-width:767px) {
  #lesson-tabs {
    border-bottom: 0;
    text-align: center;
    margin: 5px 0;
  }

  #lesson-tabs li {
    padding: 0;
    float: none;
    display: inline-block;
  }

  #lesson-tabs li a {
    border: none;
    padding: 5px;
  }

  #lesson-tabs li.active .iconRounded {
    background-color: #f39c12;
    color: #fff;
  }

  .lesson-tests .custom-pagination ul {
    padding: 0;
  }
}

/* END NEMET NYELVI 1x1
================================================== */

/* SZOTANULAS EGYSZERUEN
================================================== */
.vocab-img-test a {
  background: transparent;
  border: none;
  color: black;
}

.custom-next-btn {
  font-size: 14px;
  padding: 7px 12px;
}

.words-submenu {
  padding: 10px 10px 10px;
}

.words-submenu .nav-pills li:nth-of-type(3) {
  clear: both;
}

.menu-inline .words-submenu .nav-pills li:nth-of-type(3) {
  clear: none;
}

#wordlist.slice {
  padding-top: 30px;
}

#card i {
  padding-left: 5px;
}

.custom-arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  padding: 3px;
  float: right;
  margin-top: 7px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -webkit-transition: all .3s; /* Safari prior 6.1 */
  transition: all .3s;
}

.custom-arrow.is-active {
  margin-bottom: 0px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
@media(max-width:996px) {
  .words-submenu .nav-pills li:nth-of-type(3) {
    clear: none;
  }
}
@media(max-width:767px) {
  .vocab-test-result-table {
    overflow: scroll;
  }

  .custom-next-btn {
    margin-top: 10px;
  }

  .vocab-img-test {
    padding: 0 5px;
  }

  .mobile-vocab-img img,
  .vocab-img-test img {
    max-height: 100%;
    max-width: 100%;
    margin-top: 10px;
  }

  .vocab-image.learn-img,
  .vocab-image.translate-img {
    max-width: 130px;
    max-height: 130px;
  }

  .vocab-img-test a {
    padding: 5px 0;
  }

  .vocab-img-test a p {
    white-space: normal;
  }

  .mobile-vocab-img img {
    margin: auto;
  }


  .words-submenu .nav-pills>li,
  .phrase-test-submenu .nav-pills>li {
    display: inline-block;
    vertical-align: top;
    float: none;
  }

  .words-submenu li a,
  .phrase-test-submenu li a {
    padding: 5px;
  }

  .words-submenu li a .vocab-rounded,
  .phrase-test-submenu li a .vocab-rounded {
    padding-top: 7px;
    width: 50px;
    height: 50px;
    margin: auto;
  }
  .words-submenu li a .vocab-rounded img,
  .phrase-test-submenu li a .vocab-rounded img {
    width: 30px;
    height: 30px;
  }

  .vocab-subtitle {
    margin-bottom: 10px;
  }

  #card {
    height: auto;
  }

  #card .front,
  #card .back {
    padding-bottom: 15px;
  }
}

/* END SZOTANULAS EGYSZERUEN
================================================== */

/* HASZNOS SZITUACIOK
================================================== */
@media(max-width:767px) {
  .phrase-sum-table,
  #phraselist {
    overflow: scroll;
  }

  .situation-gap-test .dialog ul,
  .situation-dialog ul {
    padding-left: 0;
  }

  .phrase-test-submenu {
    margin-top: 20px;
  }
}

/* END HASZNOS SZITUACIOK
================================================== */

/* GIFT PAGE
================================================== */

.giftPageCover {
  min-height: 150px;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.giftPageSide {
  min-height: 100vh;
  background-size: cover;
  background-position: top;
  opacity: .3;
}

.giftHeader {
  background-color: #ffecaa;
  padding: 30px 50px;
  margin: 20px 0;
}

.giftHeader h3,
.giftHeader h2 {
  text-align: left;
  text-transform: uppercase;
}

.giftHeader h3 {
  font-size: 34px;
  line-height: 1.2em;
}
.downloadSection {
  margin-bottom: 50px;
}

.downloadSection:last-of-type {
  margin-bottom: 0;
}

.giftTextWrapper {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
}

.markdownSection {
  margin-bottom: 50px;
}

.markdownSection p {
  font-size: 20px;
}

.downloadSection a {
  font-weight: bold;
  padding: 10px;
  font-size: 16px;
}

.giftDownloadSide .glyphicon {
  font-size: 30px;
  display:inline-block;
  vertical-align:middle;
  margin-right: 15px;
}
.downloadSection p {
  font-size: 19px;
  font-weight: bold;
}

.giftDownloadSide hr {
  border-width: 3px;
  border-color: black;
}

.coursesBox {
  padding: 20px;
  display: inline-block;
  margin-bottom: 40px;
}

.coursesBox p {
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
  font-size: 18px;
}

.coursesBox h3 {
  margin-bottom: 40px;
}

.coursesBox .courseCover {
  max-width: 100%;
}

.courseDiv {
  transition: box-shadow .3s;
}

.courseDiv img {
	-webkit-transition: -webkit-transform 1s;
	transition: transform 1s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.courseDiv:hover img {
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}


@media(max-width:996px) {
  .giftHeader {
    padding: 10px;
    margin-bottom: 0;
  }
  .giftHeader h3 {
    font-size: 20px;
  }
}
/* END GIFT PAGE
================================================== */


/* LANDING
================================================== */
.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.landing-tile {
  padding-right: 0;
  padding-left: 0;
}

.landing-tile .infoIcons {
  padding-top: 50px;
}
.landing-list,
#products .landing-list {
  padding-left: 0;
}
.landing-list li {
  list-style-type: none;
  text-align: left;
  margin-bottom: 12px;
  line-height: 1.5em;
}
.landing-list li i {
  padding-right: 5px;
}

.landing-tile .coverImage.landing {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.order-lg-first {
  order: 1;
}

.landing-course-subtitle {
  line-height: 1.6em;
}

.landing-course-subtitle-list,
#products .landing-course-subtitle-list {
  padding-left: 0;
  line-height: 2em;
  font-weight: bold;
  margin-top: 42px;
}

.subtitle-list {
  list-style-type: none;
  font-size: 18px;
  line-height: 1.6em;
}


.bg-yellow-box {
  height: 300px;
  background-color: #ffe8b3;
  padding: 30px;
}

.bg-black-box p {
  text-align: left;
}

.landing-tile h4,
.landingTitle {
  font-size: 28px;
  margin-bottom: 25px;
  line-height: 1.2em;
}
.landing-tile h4 {
  margin-bottom: 0;
}
.bg-yellow-box h4,
.landingHeadingText .bg-yellow-box h4 {
  margin-top: 0;
  margin-bottom: 15px;
}

.landingHeadingText h4 {
  font-size: 22px;
  margin-bottom: 20px;
  margin-top: 20px;
  line-height: 1.2em;
}

.landingHeadingText ul {
  line-height: 2em;
}

.tile-first {
  float: right;
}

.tile-second {
  float: left;
}

.fp-play-rounded-fill {
  background: #504e4ee8;
  border-radius: 50%;
}

.fp-player a {
  background: none!important;
  bottom: -20px!important;
}

.listWithArrows li {
  list-style-type: none;
  margin-bottom: 12px;
}
 .listWithArrows i {
   color: #f39c12;
   font-size: 18px;
 }

#products .listWithArrows ul {
  padding-left: 40px;
  font-weight: normal;
}
#products .listWithArrows ul li {
  list-style-type: circle;
}
#products .listWithArrows ul ul li {
  list-style-type: none;
}
#products ul.m0 {
  margin: 0;
  padding-left: 40px;
}
#products ul.m0 li {
  list-style-type: circle;
}

.landingHeadingText p {
  font-size: 18px;
}

@media(max-width:1024px) {
  .tile-first,
  .title-second {
    float: none;
  }

  .landing-tile .infoIcons {
    padding-top: 0;
  }

  .bg-yellow-box {
    height: auto;
  }

  .tile-second {
    float: none;
  }
  .fp-play-rounded-fill {
    width: 50px!important;
    height: 50px!important;
  }
}

/* END LANDING
================================================== */

/* NEWS
================================================== */
.newsText {
  padding: 20px 20px 25px 20px;
  margin-bottom: 22px;
}

.newsText h3 {
  margin-bottom: 8px;
}

.date {
  font-size: 12px;
  line-height: 12px;
  font-style: italic;
}

.newsText p {
  font-size: 12px;
}

/* END NEWS
================================================== */
/* FOOTER
================================================== */
footer {
  padding: 44px 0 0px;
}

#footerRights {
  padding: 22px;
  font-size: 12px;
}

.safeSite {
  text-align: right;
}

@media(min-width:768px) {
  .footerWidget {
    float: right;
  }
}

@media(max-width:767px) {
  .safeSite {
    text-align: center;
  }
}

/* END FOOTER
================================================== */
/* SHOPPING PAGE
================================================== */
h2.mainHeader {
  margin-top: 15px;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.checkList {
  list-style-type: none;
  padding-left: 15px;
  margin-top: 15px;
}

.checkList li {
  text-indent: -1em;
  margin-left: 30px;
  margin-bottom: 40px;
  vertical-align: middle;
}

.checkList li i {
  margin-right: 15px;
  vertical-align: middle;
}

.productTable {
  margin: 30px auto;
}

.productBox td {
  border: none;
  vertical-align: middle;
}

.productBox .productImage {
  padding: 0;
  vertical-align: top;
}

.productBox .productDetailsBody {
  padding-top: 0;
}

.infoIcons {
  padding: 10px 10px 10px 0;
}

.infoIcons .iconWrapper {
  display: inline-block;
  max-width: 80px;
  vertical-align: top;
  margin-right: 20px;
}

.infoIcons .materialIcon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 15px;
}

.infoIcons .materialIcon:first-of-type {
  margin-left: 0;
}

.orderDetailsBox {
  background: #ddddde;
  padding: 20px;
  border-radius: 10px;
}

.productPrice span {
  font-weight: bold;
}

.shopAsGift {
  border: 3px solid #f39c12;
  border-radius: 15px;
  padding: 20px;
  background: #fffaf2;
}

.shopAsGift label {
  padding-left: 5px;
}

/* Shopping page media query
================================================== */
@media(max-width:767px) {
  .productBox .productData {
    display: table-row;
  }

  .productName {
    margin-top: 20px;
  }

  .productPrice span {
    margin-top: 20px;
  }
}

/* CHECKBOXES AND RADIO BUTTONS
================================================== */
form label:hover {
  cursor: pointer;
}

.checkboxWrapper {
  overflow: hidden;
  position: relative;
  margin: auto;
}

.checklabel {
  display: block;
  width: 100%;
  background: #FF812C;
  color: #FFFFFF;
  border-radius: 4px;
  text-align: center;
  padding: 10px 40px;
  font-size: 1em;
  outline: 0;
  transition: .2s ease;
}

.checklabel:hover {
  background: #ad6e08;
  cursor: pointer;
}

.checkbox {
  position: absolute;
  right: 20px;
  top: 5px;
  width: 20px;
  height: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-image: url("../images/icons/outline-check-24px.5f20c2bdd21c.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  background-position: -10em -10em;
  transition: .2s ease;
}

.checkbox:active+label {
  background-color: #659c2a;
}

.checkbox:checked {
  background-position: 0 0;
}

.checkbox:checked+label {
  background-color: #659c2a;
  color: white;
}

.checkbox:checked+label:after {
  content: 'n';
}

.to-order-button {
  visibility: hidden;
}

.checkbox:checked ~ .to-order-button {
  visibility: visible;
}

.checkbox:active,
.checkbox:focus,
.checkbox:active:focus,
input[type="checkbox"]:focus {
  outline: none !important;
}

/* END SHOPPING PAGE


================================================== */
/* LOGIN
================================================== */

@media(max-width:767px) {
  .omb_socialButtons i.icon-facebook-1,
  .omb_socialButtons i.fa-google {
    display: inline-block!important;
  }
}


/*
================================================== */
/* SLIDERS
================================================== */
/*** flex ***/
#flexHome {
  background: transparent;
  margin-top: 0;
}

#flexHome .flex-control-nav {
  text-align: left;
  margin-bottom: -44px;
}

#flexHome h1 {
  margin-bottom: 11px;
  font-weight: 400;
  font-size: 32px;
  line-height: 1em;
  text-transform: uppercase;
  padding: 0;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
  text-align: left;
  display: inline-block;
}

#flexHome h1:after {
  content: ''
}

#flexHome h2 {
  text-align: left;
  display: inline-block;
}

.flexslider .slides>li {
  height: 110px;
}

.flex-control-nav {
  position: static;
  margin-top: 22px;
}

.flex-control-nav li {
  margin-left: 0;
  margin-right: 11px;
}

.flex-control-nav {
  display: none;
}

/** OWL SLIDER **/
.owl-buttons {}

.owl-theme .owl-controls .owl-buttons div {
  position: absolute;
  top: 42%;
  background: none;
  font-family: 'custom-icons';
  font-size: 3em;
  text-align: center;
  color: #fff;
}

.owl-next {
  right: 0;
}

.owl-prev {
  left: 0;
}

.owl-next:before {
  content: '\e766';
}

.owl-prev:before {
  content: '\e765';
}

.owl-theme .owl-controls {
  margin-top: 22px;
}

.fixWidth {
  width: 95px;
}

/*** MEDIA QUERIES ***/
@media(max-width:400px) {
  .flexslider .slides>li {
    height: 120px;
  }

  #homeFullScreen .flexslider .slides>li {
    height: 60px;
  }

  #flexHome h2 {
    font-size: 12px;
  }

  .minPadding {
    padding-left: 2px;
    padding-right: 2px;
  }
}

@media(max-width:767px) {
  .btn {
    padding: 6px 12px;
  }
  .homeBackground {
    background-image: url("../images/home_mobilra.32619f5da932.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .minPadding {
    padding-left: 3px;
    padding-right: 3px;
  }
}

@media(min-width:768px) {
  .newsText {
    margin-bottom: 0;
  }

  #flexHome h1 {
    font-size: 40px;
  }

  #flexHome {
    margin-top: 22px;
  }

  .flex-control-nav {
    display: block;
  }

  .flexslider .slides>li {
    height: 160px;
  }

  #homeFullScreen .flexslider .slides>li {
    height: 80px;
  }

  .homeBackground {
    background-image: url("../images/home.be48d0c79878.jpg");
    background-repeat: no-repeat;
    background-position: right top;
    background-color: #f39c12;
  }

  .minPadding {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media(min-width:992px) {
  #flexHome h1 {
    font-size: 50px;
  }

  #flexHome {
    margin-top: 33px;
  }

  .flexslider .slides>li {
    height: 200px;
  }

  #homeFullScreen .flexslider .slides>li {
    height: 100px;
  }

  .homeBackground {
    background-image: url("../images/home.be48d0c79878.jpg");
    background-repeat: no-repeat;
    background-position: right top;
  }
}

@media(min-width:1200px) {
  #flexHome h1 {
    font-size: 80px;
  }

  #flexHome {
    margin-top: 44px;
  }

  .flexslider .slides>li {
    height: 250px;
  }

  .homeBackground {
    background-image: url("../images/home.be48d0c79878.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/*** END MEDIA QUERIES ***/
/* PORTFOLIO
================================================== */
.custom-pagination {
  margin-bottom: 22px;
}

nav#filter li,
.custom-pagination li {
  display: inline-block;
  list-style: none;
}

.isotopeItem {
  margin-bottom: 22px;
}

.isotopeItem .boxContent {
  margin-top: 22px;
  padding: 0;
}

header#project {
  padding: 22px 0;
}

#project h1 {
  text-align: left;
}

#pageslide {
  display: none;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 9999;
  width: 100%;
  background-color: #fff;
  color: #000;
  box-shadow: none;
  padding: 0;
}

#portfolioSheetWrapper .stage {
  width: 100%;
  height: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

#portfolioSheetWrapper .content {
  width: 100%;
}

/* END PORTFOLIO
================================================== */
/* FORM
================================================== */
#icon_result,
#audio_result,
#dummy_result {
  border: 0;
}

#verifyImg {
  margin-bottom: 11px;
}

/*** MEDIA QUERIES ***/
@media(max-width:767px) {}

@media(min-width:768px) {}

@media(min-width:992px) {}

@media(min-width:1200px) {
  input#verify {
    margin-top: 0;
  }
}

/*** END MEDIA QUERIES ***/
/* END FORM
================================================== */
/* MISCELANIOUS
================================================== */
/* Preloader one page */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  /* makes sure it stays on top */
  background: white;
  text-align: center;
}

#status {
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  /* centers the loading animation horizontally one the screen */
  top: 50%;
  /* centers the loading animation vertically one the screen */
  margin-top: -100px;
  /* is width and height divided by two */
  text-align: center;
  padding-top: 15px;
  text-transform: uppercase;
  border-radius: 11px;
}

#status img {
  margin-bottom: 22px;
}

/*** hover images ***/
.imgHover article {
  position: relative;
}

.mask {
  position: absolute;
  top: 0;
  left: 15px;
  background: rgba(79, 175, 194, 1);
  /*width:100%;*/
  display: none;
  z-index: 0;
}

.iconLinks {
  display: none;
  position: relative;
}

.iconLinks a {
  display: inline-block;
  text-decoration: none;
}

.iconLinks a:hover i {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.iconLinks a span {
  position: relative;
  top: -30px;
  font-size: 16px;
  text-align: center;
  width: 100%;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
}

.mediaHover {
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.ie8 .mask {
  bacground: white;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

ul.socialNetwork {
  padding: 0;
  display: block;
}

ul.socialNetwork li {
  display: inline-block;
  list-style-type: none;
}

/*** pricing table ***/
.pricingBloc {
  text-align: center;
}

.pricingBloc ul {
  list-style-type: none;
  margin: 0;
  padding: 0 1.5em;
}

.pricingBloc ul li {
  padding: 0.6em 0
}

.pricingBloc h3 {
  font-size: 24px;
  margin-bottom: 0;
  padding: 11px;
  font-weight: 400;
  text-transform: none;
}

.pricingBloc p {
  font-size: 18px;
  margin-bottom: 0;
  padding: 1.5em
}

.pricingBloc.focusPlan {
  margin-top: 0;
}

.pricingBloc.focusPlan p {
  font-size: 20px;
  margin-bottom: 0;
  padding: 1.5em
}

/*** end pricing table ***/
/*** responsive video ***/
.videoWrapper {
  position: relative;
  padding-bottom: 54%;
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

p.credits {
  padding: 1.5em;
  margin-bottom: 1.5em
}

/*** end responsive video ***/
.sharrre .button {
  float: left;
  width: 60px;
}

/*** MEDIA QUERIES ***/
@media(max-width:767px) {}

@media(min-width:768px) {}

@media(min-width:992px) {
  #defaultCountdown {
    margin-top: 70px;
  }
}

@media(min-width:1200px) {}

/*** END MEDIA QUERIES ***/
/* END MISCELANIOUS
================================================== */
.card {
  width: 300px;
  height: 150px;
  vertical-align: middle;
  display: table;
  max-width: 400px;
  min-width: 100px;
  min-height: 100px;
  max-height: 200px;
  position: relative;
}

/* -- make sure to declare a default for every property that you want animated -- */
/* -- general styles, including Y axis rotation -- */
.card .front {
  z-index: 900;
  position: absolute;
  vertical-align: middle;
  width: inherit;
  height: inherit;
  border: 1px solid #ccc;
  text-align: center;
  font-size: 1.4em;
  background-color: rgba(205, 255, 182, 0.60);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.9);
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform: rotateX(0deg) rotateY(0deg);
  transform: rotateX(0deg) rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  /* -- transition is the magic sauce for animation -- */
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.card.fliprj .front {
  z-index: 900;
  vertical-align: middle;
  border-color: #eee;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.card .back {
  z-index: 800;
  vertical-align: middle;
  width: inherit;
  height: inherit;
  border: 1px solid #ccc;
  background-color: rgba(205, 255, 182, 0.60);
  text-align: center;
  font-size: 1.4em;
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-179deg);
  /* setting to 180 causes an unnatural-looking half-flip */
  transform: rotateY(-179deg);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  /* -- transition is the magic sauce for animation -- */
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.card.fliprj .back {
  z-index: 1000;
  vertical-align: middle;
  -webkit-transform: rotateX(0deg) rotateY(0deg);
  -moz-transform: rotateX(0deg) rotateY(0deg);
  transform: rotateX(0deg) rotateY(0deg);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* -- cosmetics -- */
.card.fliprj .action {
  display: none;
}

.display-table {
  display: table;
}

.display-table-row {
  display: table-row;
}

.display-table-cell {
  display: table-cell;
}

#salecontent p {
  font-size: 18px;
}

#salecontent body {
  font-size: 18px;
}

#salecontent h1 {
  font-size: 44px;
  text-align: center;
}

#salecontent h2 {
  font-size: 28px;
  line-height: 1.3em;
  text-align: center;
  text-transform: none;
  font-family: 'Roboto', sans-serif;
}

#salecontent h3 {
  font-size: 24px;
  text-transform: none;
  font-family: 'Roboto', sans-serif;
}

#salecontent hr {
  padding: 0;
  margin: 1em 0 1em 0;
  border-top: 2px solid #eee;
}

/* --- login --- */
.omb_login .omb_authTitle {
  text-align: center;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 17px;
}

.omb_login .omb_authTitle a {
  text-align: center;
  line-height: 44px;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: 'Roboto', sans-serif;
}

.omb_login .omb_socialButtons a {
  color: white;
  opacity: 0.9;
}

.omb_login .omb_socialButtons a:hover {
  color: white;
  opacity: 1;
}

.omb_login .omb_socialButtons .omb_btn-facebook {
  background: #3b5998;
  color: #ffffff;
}

.omb_login .omb_socialButtons .omb_btn-twitter {
  background: #00aced;
  color: #ffffff;
}

.omb_login .omb_socialButtons .omb_btn-google {
  background: #c32f10;
  color: #ffffff;
}

.omb_login .omb_loginOr {
  position: relative;
  font-size: 1.5em;
  color: #aaa;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.omb_login .omb_loginOr .omb_hrOr {
  background-color: #cdcdcd;
  height: 1px;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.omb_login .omb_loginOr .omb_spanOr {
  display: block;
  position: absolute;
  left: 50%;
  top: -0.6em;
  margin-left: -1.5em;
  background-color: white;
  width: 3em;
  text-align: center;
}

.omb_login .omb_loginForm .input-group.i {
  width: 2em;
}

.omb_login .omb_loginForm .help-block {
  color: red;
}

.omb_login .subheader {
  font-size: 20px;
  margin: auto;
  text-align: center;
  align-content: center;
  padding-bottom: 0.5em;
}

.omb_login .subheader a {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 24px;
}

.omb_login li {
  padding-bottom: 0.5em;
}

.omb_login ul {
  padding-bottom: 1em;
}

.omb_login {
  padding-bottom: 8em;
}

.omb_loginForm input {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #444444;
  background-color: #ffffff;
  /* ededed */
  border: 1px solid #cdcdcd;
  border-radius: 0px 4px 4px 0px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

@media (min-width: 768px) {
  .omb_login .omb_forgotPwd {
    float: right;
  }
}

@media (max-width: 768px) {
  .omb_login .omb_forgotPwd {
    float: none;
  }
  .loginHelpLinks span {
    display: block;
    margin-top: 10px;
  }
}

.ul-without-bullet {
  list-style-type: none;
  padding: 5px;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: top, left, opacity;
  transition-property: transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/**** Isotope styles ****/
/* required for containers to inherit vertical size from window */
/*html,
body {
  height: 100%;
}*/
#container {
  border: 1px solid #666;
  padding: 5px;
  margin-bottom: 20px;
}

.element {
  width: 110px;
  height: 110px;
  margin: 5px;
  float: left;
  overflow: hidden;
  position: relative;
  background: #888;
  color: #222;
  -webkit-border-top-right-radius: 1.2em;
  -moz-border-radius-topright: 1.2em;
  border-top-right-radius: 1.2em;
}

.element.alkali {
  background: #F00;
  background: hsl(0, 100%, 50%);
}

.element.alkaline-earth {
  background: #F80;
  background: hsl(36, 100%, 50%);
}

.element.lanthanoid {
  background: #FF0;
  background: hsl(72, 100%, 50%);
}

.element.actinoid {
  background: #0F0;
  background: hsl(108, 100%, 50%);
}

.element.transition {
  background: #0F8;
  background: hsl(144, 100%, 50%);
}

.element.post-transition {
  background: #0FF;
  background: hsl(180, 100%, 50%);
}

.element.metalloid {
  background: #08F;
  background: hsl(216, 100%, 50%);
}

.element.other.nonmetal {
  background: #00F;
  background: hsl(252, 100%, 50%);
}

.element.halogen {
  background: #F0F;
  background: hsl(288, 100%, 50%);
}

.element.noble-gas {
  background: #F08;
  background: hsl(324, 100%, 50%);
}

.element * {
  position: absolute;
  margin: 0;
}

.element .symbol {
  left: 0.2em;
  top: 0.4em;
  font-size: 3.8em;
  line-height: 1.0em;
  color: #FFF;
}

.element.large .symbol {
  font-size: 4.5em;
}

.element.fake .symbol {
  color: #000;
}

.element .name {
  left: 0.5em;
  bottom: 1.6em;
  font-size: 1.05em;
}

.element .weight {
  font-size: 0.9em;
  left: 0.5em;
  bottom: 0.5em;
}

.element .number {
  font-size: 1.25em;
  font-weight: bold;
  color: hsla(0, 0%, 0%, .5);
  right: 0.5em;
  top: 0.5em;
}

.variable-sizes .element.width2 {
  width: 230px;
}

.variable-sizes .element.height2 {
  height: 230px;
}

.variable-sizes .element.width2.height2 {
  font-size: 2.0em;
}

.element.large,
.variable-sizes .element.large,
.variable-sizes .element.large.width2.height2 {
  font-size: 3.0em;
  width: 350px;
  height: 350px;
  z-index: 100;
}

.clickable .element:hover {
  cursor: pointer;
}

.clickable .element:hover h3 {
  text-shadow:
    0 0 10px white,
    0 0 10px white;
}

.clickable .element:hover h2 {
  color: white;
}

/*** MEDIA QUERIES ***/
@media(max-width:767px) {
  .navbar-collapse {
    max-height: 100%;
  }

  body {
    font-size: 16px;
  }

  h1,
  .paralaxText h1 {
    font-size: 30px;
  }

  h2,
  .mainPageLogoBox h2,
  h2.big-big-size {
    font-size: 20px;
  }

  .mainPageLogoBox .brandLogo {
    max-height: 40px;
  }

  .divider {
    height: 30px;
  }

  .margin10px {
    margin: 0;
  }

  .choice a.btn,
  .buttons a.btn {
    width: 100%;
    margin-bottom: 10px;
  }

  #result .yellow.vocab-help {
    font-size: 15px;
  }

  #card {
    width: 100%;
  }

  .audio-box {
    min-height: initial;
  }

  .slice {
    margin: 0;
  }

  .sum-result tr,
  .sum-result .vocab-help {
    font-size: 12px;
  }

  .sum-result .vocab-help-extra {
    line-height: normal;
    font-size: 16px;
  }

  .infoIcons {
    padding: 0;
    margin-bottom: 15px;
  }

  .infoIcons .iconWrapper {
    margin-right: 10px;
    margin-top: 10px;
    width: 50%;
    max-width: calc(50% - 20px);
  }

  .productBox {
    border-bottom: 0;
  }

  #salecontent {
    margin-top: 2em;
  }

  #salecontent h2 {
    font-size: 20px;
    line-height: 1.3em;
  }
}

@media(max-width: 992px) {
  .topicItem .inactive .lessonCoverInaktiv,
  .topicItem .inactive .inactiveCoverImgWrapper {
    position: relative;
  }

  .topicItem .inactive .lessonCoverInaktiv::after,
  .topicItem .inactive .inactiveCoverImgWrapper::after {
    content: "A tanfolyam megvásárlásával elérhetővé válik az összes lecke";
    background: rgba(51, 51, 51, 0.9);
    background-image: url("../images/icons/baseline-https-24px.6ea7b90f8a1a.svg");
    background-position: top 20px center;
    background-repeat: no-repeat;
    background-size: 30px;
    z-index: 1;
    position: absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
    height:100%;
    width:100%;
    text-align: center;
    padding: 16% 20px;
    color: white;
  }
}

@media(min-width:768px) {
  .paralaxText blockquote {
    font-size: 44px;
    line-height: 44px;
  }

  .divider {
    height: 50px;
  }
}

@media(min-width:992px) {
  .divider {
    height: 70px;
  }

  .topicItem .inactive:hover .inactiveLessonWrapper {
    opacity: 1;
  }
}

@media(min-width:1200px) {
  .divider {
    height: 70px;
  }
}

/*** END MEDIA QUERIES ***/
#markdown article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block
}

#markdown audio,
canvas,
video {
  display: inline-block
}

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

#markdown body {
  margin: 0
}

#markdown a:focus {
  outline: thin dotted
}

#markdown a:active,
a:hover {
  outline: 0
}

#markdown h1 {
  font-size: 2em;
  margin: 0.67em 0
}

#markdown abbr[title] {
  border-bottom: 1px dotted
}

#markdown b,
strong {
  font-weight: bold
}

#markdown dfn {
  font-style: italic
}

#markdown hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0
}

#markdown code,
kbd,
pre,
samp {
  font-family: inherit;
  font-size: 1em
}

#markdown pre {
  white-space: pre-wrap
}

#markdown q {
  quotes: "\201C""\201D""\2018""\2019"
}

#markdown small {
  font-size: 80%
}

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

#markdown sup {
  top: -0.5em
}

#markdown sub {
  bottom: -0.25em
}

#markdown img {
  border: 0
}

#markdown svg:not(:root) {
  overflow: hidden
}

#markdown figure {
  margin: 0
}

#markdown fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em
}

#markdown legend {
  border: 0;
  padding: 0
}

#markdown button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0
}

#markdown button,
input {
  line-height: normal
}

#markdown button,
select {
  text-transform: none
}

#markdown button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer
}

#markdown button[disabled],
html input[disabled] {
  cursor: default
}

#markdown textarea {
  overflow: auto;
  vertical-align: top
}

#markdown table {
  border-collapse: collapse;
  border-spacing: 0
}

#markdown html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

#markdown input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit
}

#markdown button,
input,
select[multiple],
textarea {
  background-image: none
}

#markdown a {
  color: #2080df;
  text-decoration: none
}

a:hover,
a:focus {
  /* color: #165a9c; */
  text-decoration: underline
}

#markdown a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px
}

#markdown img {
  vertical-align: middle
}

#markdown .img-responsive {
  display: block;
  max-width: 100%;
  height: auto
}

#markdown .img-rounded {
  border-radius: 6px
}

#markdown .img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #f6f7f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto
}

#markdown .img-circle {
  border-radius: 50%
}

#markdown hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid rgba(102, 128, 153, 0.1)
}

#markdown p {
  margin: 0 0 10px
}

#markdown small {
  font-size: 85%
}

#markdown cite {
  font-style: normal
}

#markdown h1 {
  margin-top: 20px;
  margin-bottom: 10px
}

#markdown h2 {
  margin-top: 20px;
  margin-bottom: 10px
}

#markdown h3 {
  margin-top: 20px;
  margin-bottom: 10px
}

#markdown h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px
}

#markdown h1 {
  font-size: 36px
}

#markdown h2 {
  font-size: 30px
}

#markdown h3 {
  font-size: 24px
}

#markdown h4 {
  font-size: 18px
}

#markdown h5 {
  font-size: 14px
}

#markdown h6 {
  font-size: 12px
}

#markdown ul,
ol {
  margin-top: 0;
  margin-bottom: 10px
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0
}

#markdown dl {
  margin-bottom: 20px
}

#markdown dt,
dd {
  line-height: 1.428571429
}

#markdown dt {
  font-weight: bold
}

#markdown dd {
  margin-left: 0
}

#markdown abbr.initialism {
  font-size: 90%;
  text-transform: uppercase
}

#markdown blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid rgba(102, 128, 153, 0.075)
}

blockquote p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25
}

#markdown blockquote p:last-child {
  margin-bottom: 0
}

#markdown blockquote small {
  display: block;
  line-height: 1.428571429;
  color: #999
}

blockquote small:before {
  content: '\2014 \00A0'
}

#markdown blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid rgba(102, 128, 153, 0.075);
  border-left: 0
}

blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right
}

#markdown blockquote.pull-right small:before {
  content: ''
}

#markdown blockquote.pull-right small:after {
  content: '\00A0 \2014'
}

#markdown q:before,
q:after,
blockquote:before,
blockquote:after {
  content: ""
}

#markdown address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.428571429
}

#markdown code,
pre {
  font-family: inherit;
}

#markdown code {
  padding: 2px 4px;
  font-size: 90%;
  color: #162029;
  background-color: rgba(102, 128, 153, 0.075);
  white-space: nowrap;
  border-radius: 4px
}

#markdown pre {
  display: block;
  padding: 9px;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.428571429;
  word-break: break-all;
  word-wrap: break-word;
  color: #333;
  background-color: rgba(102, 128, 153, 0.05);
  border: 1px solid rgba(102, 128, 153, 0.075);
  border-radius: 4px
}

pre.prettyprint {
  margin-bottom: 20px
}

#markdown pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0
}

#markdown table col[class*="col-"] {
  float: none;
  display: table-column
}

#markdown table td[class*="col-"],
table th[class*="col-"] {
  float: none;
  display: table-cell
}

#markdown legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5
}

#markdown label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold
}

#markdown input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

#markdown input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal
}

#markdown input[type="file"] {
  display: block
}

#markdown select[multiple],
select[size] {
  height: auto
}

#markdown select optgroup {
  font-size: inherit;
  font-style: inherit;
  font-family: inherit
}

#markdown input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px
}

#markdown textarea.form-control {
  height: auto
}

#markdown input[type="radio"][disabled],
input[type="checkbox"][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed
}

#markdown textarea.input-sm {
  height: auto
}

#markdown textarea.input-lg {
  height: auto
}

#markdown input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%
}

#markdown th.visible-print,
td.visible-print {
  display: none !important
}

#markdown ol.linenums {
  margin-top: 0;
  margin-bottom: 0
}

#markdown li.L0,
li.L1,
li.L2,
li.L3,
li.L5,
li.L6,
li.L7,
li.L8 {
  list-style-type: none
}

#markdown li.L1,
li.L3,
li.L5,
li.L7,
li.L9 {
  background: #eee
}

#markdown a code {
  color: inherit
}

#markdown h1 {
  font-size: 36px
}

#markdown h2 {
  font-size: 30px
}

#markdown h3 {
  font-size: 24px
}

#markdown h4 {
  font-size: 18px
}

#markdown h5 {
  font-size: 14px
}

#markdown h6 {
  font-size: 12px
}

#markdown h1 {
  margin: 60px 0 40px
}

#markdown h2 {
  margin: 50px 0 30px
}

#markdown h3 {
  margin: 35px 0 20px
}

#markdown h4,
h5,
h6 {
  margin: 25px 0 15px
}

#markdown p,
pre,
pre.prettyprint,
blockquote {
  margin: 0 0 15px
}

#markdown hr {
  margin: 30px 0
}

#markdown code,
pre {
  font-family: inherit;
  font-size: 18px!important;
}

#markdown pre,
pre.prettyprint {
  border: 0 solid rgba(102, 128, 153, 0.075);
  border-left: 10px solid rgba(102, 128, 153, 0.075);
  border-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 10px 15px
}

pre code,
pre.prettyprint code {
  background-color: transparent !important
}

#markdown dt,
dd {
  margin-top: 5px;
  margin-bottom: 5px
}

#markdown dd {
  margin-left: 40px
}

#markdown table {
  margin-bottom: 20px
}

#markdown table th,
table td {
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dddddd
}

#markdown table th {
  font-weight: bold
}

#markdown table thead th {
  vertical-align: bottom
}

#markdown table caption+thead tr:first-child th,
table caption+thead tr:first-child td,
table colgroup+thead tr:first-child th,
table colgroup+thead tr:first-child td,
table thead:first-child tr:first-child th,
table thead:first-child tr:first-child td {
  border-top: 0
}

#markdown table tbody+tbody {
  border-top: 2px solid #dddddd
}

#markdown blockquote {
  border-left-width: 10px;
  background-color: rgba(102, 128, 153, 0.05);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

blockquote p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.428571429
}

#markdown blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0
}

#markdown ul,
ol {
  margin-bottom: 15px
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 15px
}

#markdown kbd {
  padding: 0.1em 0.6em;
  border: 1px solid rgba(22, 32, 41, 0.25);
  -webkit-box-shadow: 0 1px 0 rgba(22, 32, 41, 0.25);
  box-shadow: 0 1px 0 rgba(22, 32, 41, 0.25);
  font-size: 11px;
  font-family: inherit;
  background-color: #fff;
  color: #333;
  border-radius: 3px;
  display: inline-block;
  margin: 0 0.1em;
  white-space: nowrap
}


/*** Home page MEDIA QUERIES ***/
@media(max-width:767px) {
  .paralaxText h2 {
    font-size: 32px;
    padding-top: 0;
    margin-bottom: 15px;
  }

  .desktopBtn {
    display: none;
  }

  .mobileBtn {
    display: inline-block;
  }

  #products .extra-size {
    font-size: 28px;
    line-height: 1em;
  }

  #products ul {
    padding-left: 0;
  }

  #products .listWithArrows ul {
    padding-left: 20px;
  }

  #products ul.mainList li {
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
  }

  #products ul.mainList li span {
    max-width: 100%;
    float: none !important;
    display: block;
  }

  #products ul.mainList .subList {
    margin-left: 0;
    padding-left: 0;
  }

  #products ul.mainList .subList li {
    text-align: left;
  }

  .thinH3 {
    font-size: 21px;
  }

  .homepage .extra-size {
    font-size: 24px;
    line-height: 1em;
    margin-top: 20px;
  }

  .materialIcon {
    margin: 0 auto 15px;
    width: 60px;
    height: 60px;
  }

  #services .boxFeature {
    margin-bottom: 0;
  }
}

/*** END MEDIA QUERIES ***/


/*
==================================================
==================================================
NEW DESIGN
==================================================
==================================================
*/

.new-design .pt80 {
  padding-top: 80px;
}

.new-design .pt64 {
  padding-top: 64px;
}

.new-design .pt40 {
  padding-top: 64px;
}

.new-design .pt24 {
  padding-top: 24px;
}

.new-design .pb80 {
  padding-bottom: 80px;
}

.new-design .pb64 {
  padding-bottom: 64px;
}

.new-design .pb40 {
  padding-bottom: 40px;
}

.new-design .pb24 {
  padding-bottom: 24px;
}

.new-design .mt40 {
  margin-top: 40px;
}

.new-design .mt20 {
  margin-top: 20px;
}

.new-design .mt16 {
  margin-top: 16px;
}

.new-design .mt12 {
  margin-top: 12px;
}

.new-design .mb40 {
  margin-bottom: 40px;
}

.new-design ul {
  padding-left: 24px;
}

.new-design .gray-background {
  background-color: #F5F5F5;
}

.new-design .black-background {
  background-color: #2C3F51;
  color: #FFFFFF
}

.new-design .black-background h2 {
  color: #FFFFFF
}

.new-design .black-background .subtitle {
  color: #FFFFFF
}

.new-design .modal {
  z-index: 1110;
}

.new-design {
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  /* or 21px */
  color: #666666;
  letter-spacing: 0;
  word-spacing: 0;
}

.new-design h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0;
  color: #333333;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 48px;
}

.new-design h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
}

.new-design h3 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: #333333;
  letter-spacing: 0;
}

.new-design .btn {
  border: 0;
  text-transform: none;
  background-color: #FF812C;
}

.new-design .form-control {
  width: 100%;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  margin-bottom: 20px;
}

.new-design .form-control:focus {
  background-color: #ffffff;
  border: 1px solid #FF812C;
}

.new-design .form-control textarea {
  max-height: 68px;
}

.new-design a {
  text-decoration: underline;
}

.new-design .btn {
  text-decoration: none;
}


/*==================================================
END OF NEW DESIGN
==================================================*/

/*
=======MENTOR=======
*/

.mentor-landing .subtitle {
  text-align: center;
  font-weight: 700;
  padding-top: 16px;
  padding-bottom: 12px;
  margin-bottom: 0;
  color: #333333
}

.mentor-landing .gray-circle {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #F5F5F5;
  border-radius: 50%;
  padding: 22px;
}

.mentor-landing .next-to-eachother h2 {
  display: inline-block;
}

.mentor-landing .next-to-eachother p {
  display: inline-block;
  margin-left: 16px;
}

.mentor-landing .max360 {
  max-height: 360px;
}

@media(max-width:767px) {
  .mentor-landing .gray-background-50 {
    background-color: #F5F5F5;

  }
}
@media(min-width:768px) {
  .mentor-landing .gray-background-50 {
    background-image: linear-gradient(90deg, #F5F5F5 50%, white 50%);
  }

  .mentor-landing .fix-height-515 {
    height: 515px;
  }
}

/*
=======END OF MENTOR=======
*/

/* TURBO
================================================== */

.turbo-landing h1 {
  padding-bottom: 0;
}

.turbo-landing .subheader {
  font-size: 24px;
  color: #666;
  text-align: center;
  padding-bottom: 48px;
}


.turbo-landing .container h2 {
  padding-top: 24px;
}

.turbo-landing li i {
  color: green;
}

.turbo-landing i {
  padding-right: 10px;
  font-size: 22px;
}

.turbo-landing li {
  margin-top: 0.5em;
}

.turbo-landing .coverImage {
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
}

.turbo-landing .gray {
  color:#222;
  background-color: rgba(105, 105, 95, 0.07);
}

.turbo-landing .khaki {
  color:#444;
  background-color: #fdfce1;
}

/* END TURBO
================================================== */


/* product modifications
================================================== */

.back-to-content {
  font-size: 16px;
  line-height: 48px
}

#add-to-cart-nav {
  display: none;
}

.add-to-cart {
  background: #F5F5F5;
  font-size: 24px;
  padding-top: 17px;
  padding-bottom: 17px;
}

.add-to-cart .small {
  font-size: 16px;
  padding-right: 3px;
}

.add-to-cart a {
  margin-left: 12px;
}

.add-to-cart span {
  color: #333;
}


.add-to-cart.navbar-fixed-top {
  box-shadow: 0 3px 5px #ccc;
}

.add-to-cart.navbar-fixed-bottom {
  box-shadow: 0 -3px 5px #ccc;
}


/* end of product modifications
================================================== */


/* order
================================================== */

.order label {
  margin-bottom: 0;
  font-weight: normal;
}

.new-design .form-control {
  font-size: 18px;
  line-height: 20px;
}

.payRadio ul {
  padding-left: 0;
}

.payRadio ul li {
  padding-bottom: 16px;
}

.payRadio {
  font-size: 14px;
  line-height: 24px;
}

.payRadio img {
  max-height: 24px;
}

.payWithCard {
  padding-left: 3px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}

.productPrice span {
  padding-right: 6px;
}

.productIcons {
  margin-bottom: 24px;
}

.productIcon {
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding-right: 6px;
  padding-left: 6px;
  margin-left: 12px;
}

.productIcon:first-of-type {
  margin-left: 0;
}

.order h2 {
  margin-bottom: 32px;
}

.order h3 {
  margin-bottom: 2px;
}

.order .big-size {
  font-size: 16px;
  line-height: 24px;
  color: #333;
}

.order #akcio{
  padding: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
  border: solid 3px #f39c12;
  border-radius: 6px;
}

/* end of order
================================================== */



#test_exercise .radio-answer {
  margin-right: 3px;
}
/* video player */
.video-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  /* Adjust based on your needs */
  margin: 0 auto;
  /* Center the container itself */
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  /* Maintains 16:9 ratio */
  background-color: transparent;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.video-play-overlay:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.video-play-overlay.hidden {
  display: none;
}

.video-play-icon {
  width: 80px;
  height: 80px;
  border: 5px solid white;
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease;
}

.video-play-overlay:hover .video-play-icon {
  transform: scale(1.1);
}

.video-play-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 25px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}