@charset "UTF-8";
/* reset */
*, *:before, *:after {
  box-sizing: border-box;
}
html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}
footer, header, nav, section, main {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input {
  -webkit-appearance: none;
  border-radius: 0;
}
/* EOF reset */
@font-face {
  font-family: "zurich";
  src: url("../fonts/ZurichCalligraphic_Italic.ttf") format("truetype");
}
/* változók */
:root {
  /* colors */
  --black: #000;
  --white: #fff;
  --text: #888888;
  --midDarkText: #555555;
  --darkText: #333333;
  --darkTextBtn: #444444;
  --blue: #14a0f8;
  --light-blue: #edf8fe;
  --yellow: #fffc00;
  /*--link: #;
    --link-hover: #;
    --link-with-bg:#;
    --link-with-bg-hover:#;
    --link-bg:#;*/
  /* font size */
  /* calc(minsize + (maxsize - minsize) * (100vw - 320px) / (1920 - 320)); */
  --fs-normal:calc(20px + (20 - 20) * (100vw - 320px) / (1920 - 320));
  --lh-normal:calc(34px + (34 - 34) * (100vw - 320px) / (1920 - 320));
  --fs-medium:calc(25px + (30 - 25) * (100vw - 320px) / (1920 - 320));
  --lh-medium:calc(40px + (49 - 40) * (100vw - 320px) / (1920 - 320));
  --fs-big:calc(35px + (45 - 35) * (100vw - 320px) / (1920 - 320));
  --lh-big: calc(50px + (64 - 50) * (100vw - 320px) / (1920 - 320));
  --fs-h1: calc(45px + (60 - 45) * (100vw - 320px) / (1920 - 320));
  --lh-h1: calc(60px + (80 - 60) * (100vw - 320px) / (1920 - 320));
  --fs-h2: calc(30px + (45 - 30) * (100vw - 320px) / (1920 - 320));
  --lh-h2: calc(45px + (64 - 45) * (100vw - 320px) / (1920 - 320));
  --fs-h3: calc(20px + (30 - 20) * (100vw - 320px) / (1920 - 320));
  --lh-h3: calc(35px + (49 - 35) * (100vw - 320px) / (1920 - 320));
  /* font-weight */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-extra-bold: 800;
}
/* EOF változók */
/* general */
html {
  font-size: 62.5%;
}
body {
  font-size: var(--fs-normal);
  line-height: var(--lh-normal);
  min-width: 320px;
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-weight: var(--fw-light);
}
body > div.container {
  min-height: 50vh;
}
body .subBg img {
  width: 100%;
  height: auto;
}
a:hover {
  text-decoration: none;
}
h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
}
h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
}
h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
}
.kekHatter {
  background-color: var(--blue);
  color: var(--white);
}
.mediumText {
  font-size: var(--fs-medium);
  line-height: var(--lh-medium);
}
.bigText {
  font-size: var(--fs-big);
  line-height: var(--lh-big);
}
.light {
  font-weight: var(--fw-light);
}
.regular {
  font-weight: var(--fw-regular);
}
.medium {
  font-weight: var(--fw-medium);
}
.bold {
  font-weight: var(--fw-bold);
}
.extra-bold {
  font-weight: var(--fw-extra-bold);
}
.blue {
  color: var(--blue);
}
.yellow {
  color: var(--yellow);
}
.dark {
  color: var(--darkText);
}
a.btn, button.btn {
  font-weight: var(--fw-extra-bold);
  font-size: var(--fs-normal);
  padding: 15px 27px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  transition: all 0.4s ease-in-out;
}
button.btn {
  font-size: calc(var(--fs-normal) - 5px);
  padding: 10px 20px;
}
a.btn.btn-yellow, button.btn-yellow {
  background-color: var(--yellow);
  color: var(--darkTextBtn);
}
a.btn.btn-yellow:hover, button.btn-yellow:hover {
  background-color: var(--darkTextBtn);
  color: var(--white);
}
a.btn.btn-yellow i, button.btn-yellow i {
  color: var(--blue);
  font-size: var(--fs-medium);
  position: relative;
  top: 5px;
  left: 5px;
}
a.btn.btn-blue, button.btn-blue {
  background-color: var(--blue);
  color: var(--white);
}
a.btn.btn-blue:hover, button.btn-blue:hover {
  background-color: var(--yellow);
  color: var(--blue);
}
a.btn.btn-blue:hover i, button.btn-blue:hover i {
  color: var(--blue);
}
a.btn.btn-blue i, button.btn-blue i {
  color: var(--white);
  font-size: var(--fs-medium);
  position: relative;
  top: 5px;
  left: 5px;
}
a.bigBtn {
  padding: 20px 78px;
}
.page-header h2 {
  text-align: center;
  margin: 50px 0 0 0;
}
.page-header h2.pageHeader {
  margin: 50px 0;
}
header nav {
  background-color: #fff;
  transition: all 0.7s ease-in-out;
  height: 85px;
  position: fixed;
}
header nav img {
  transform: scale(1);
  transition: all 0.7s ease-in-out;
}
header .fixed-top {
  height: 50px;
  transition: all 0.7s ease-in-out;
}
header .fixed-top a.navbar-brand img {
  transform: scale(0.5);
}
header .logo a span {
  font-family: "zurich", serif;
  font-size: calc(var(--fs-normal) * 1.2);
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
}
/* EOF general */
/* Főoldal */
.fooldalFejlecBg {
  background: url(../../../images/tantusz/fooldal-hatter/tantusz-fejlec-fooldal.jpg) no-repeat top right;
  background-size: cover;
  max-height: 80rem;
  min-height: 40rem;
  padding: 30px 0;
  margin-bottom: 30px;
}
.fooldalFejlecBg .fejlecText {
  color: var(--white);
  font-weight: var(--fw-medium);
  text-shadow: 1px 1px #000;
}
.fooldalFejlecBg .fejlecText h1 {
  font-weight: var(--fw-extra-bold);
  text-shadow: 1px 1px #000;
}
.fooldalFejlecBg .fejlecText a {
  text-shadow: none;
}
.fooldalTevekenysegek {
  margin: 30px auto;
}
.fooldalTevekenysegek h1 {
  margin: 20px 0 40px 0;
}
.fooldalTevekenysegek h2 {
  margin: 0 0 20px 0;
}
.fooldalTevekenysegek li {
  padding: 25px 20px;
}
.fooldalTevekenysegek li a {
  font-weight: 500;
  color: var(--midDarkText);
}
.fooldalTevekenysegek li a:hover {
  color: var(--text);
}
.fooldalTevekenysegek li:nth-child(even) {
  background-color: var(--light-blue);
}
.fooldalAjanlatkeres {
  background: url('../../../images/tantusz/fooldal-hatter/fooldalszolgaltatas.jpg') no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 520px;
  color: #fff;
  margin: 80px 0;
  background-attachment: fixed;
  background-clip: padding-box !important;
  background-origin: padding-box;
  text-shadow: 1px 1px #000;
}
.fooldalAjanlatkeres h1 {
  font-weight: var(--fw-extra-bold);
}
.fooldalAjanlatkeres h2 {
  margin: 50px 0;
}
.fooldalAjanlatkeres a {
  text-shadow: none;
}
.fooldalAjanlatkeres p.orderQty {
  font-size: var(--fs-medium);
  line-height: var(--lh-medium);
}
.fooldal3oszlop h2 {
  padding: 30px 0 15px;
}
.swiper-container {
  margin: 30px 0 0px;
}
.swiper-container h1 {
  font-size: var(--fs-big);
  line-height: var(--lh-big);
  color: var(--white);
  text-align: center;
  position: relative;
  top: 95px;
  z-index: 100;
}
.swiper-container .swiper-caption {
  background: none;
}
.swiper-container .swiper-caption .swiper-desc {
  font-size: var(--fs-normal);
  line-height: var(--lh-normal) !important;
}
.swiper-container .swiper-caption .swiper-desc .yellow {
  margin-top: 15px;
}
.swiper-container img {
  margin: 60px 0 30px;
}
.contactPage .kollegak {
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 30px 0 70px;
}
.contactPage .kollegak img {
  width: 30%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 50%;
}
.contactPage .kollegak > div p:nth-child(2) {
  font-weight: var(--fw-bold);
}
.contactPage .cimek {
  margin-bottom: 70px;
}
.contactPage .cimek h2 {
  color: var(--blue);
  font-weight: var(--fw-bold);
  font-size: var(--fs-medium);
}
.contactPage .cimek .bpImageContainer, .contactPage .cimek .ntImageContainer {
  width: 100%;
  /*height: 400px;*/
  overflow: hidden;
}
.contactPage .cimek .bpImageContainer img, .contactPage .cimek .ntImageContainer img {
  width: 100%;
  height: auto;
}
.contactPage .cimek .bpImageContainer img.active, .contactPage .cimek .ntImageContainer img.active {
  background-size: contain;
  opacity: 1;
}
.contactPage .cimek .bpImageContainer img:not(.active), .contactPage .cimek .ntImageContainer img:not(.active) {
  opacity: 0;
}
.contactPage .cimek .embedGoogleMap.showMap {
  opacity: 1;
  top: 0;
  right: 0;
  display: inline-block;
  position: absolute;
  width: 100%;
}
.contactPage .cimek .embedGoogleMap {
  opacity: 0;
  top: 0;
  right: 0;
  display: inline-block;
  position: absolute;
  width: 100%;
}
.contactPage .cimek .addressContainer button#bp {
  position: absolute;
  bottom: 0;
}
.contactPage .elerhetosegek h3 {
  display: none;
}
.contactPage .elerhetosegek p {
  line-height: var(--lh-medium);
}
.contactPage .elerhetosegek button {
  color: var(--white);
  background-color: var(--blue);
  transition: all 0.5s ease-in-out;
}
.contactPage .elerhetosegek button:hover {
  background-color: var(--yellow);
  color: var(--blue);
}
.header-with-bg.blue {
  background-color: var(--blue);
  color: var(--white);
}
.header-with-bg.blue h2 {
  padding: 5px 15px;
  margin: 30px 0 40px 0;
}
.contactModule {
  margin-bottom: 20px;
}
.contactModule h1 {
  font-size: var(--fs-medium);
  text-align: center;
}
.contactModule h2 {
  font-size: var(--fs-medium);
  line-height: var(--lh-medium);
  color: var(--blue);
  margin: 30px 0 10px 0;
}
.contactModule h2 span {
  font-size: calc(var(--fs-big) * 0.8);
  top: 5px;
  position: relative;
}
.contactModule p {
  font-size: var(--fs-normal);
}
.copyright {
  font-size: calc(var(--fs-normal) * 0.7);
}
.contactModule {
  margin: 70px 0;
}
/* EOF főoldal */
/* preloader */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3498db;
  -webkit-animation: spin 2s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index: 1001;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #e74c3c;
  -webkit-animation: spin 3s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9c922;
  -webkit-animation: spin 1.5s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}
#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  -webkit-transform: translateY(0);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(0);
  /* IE 9 */
  transform: translateY(0);
  /* Firefox 16+, IE 10+, Opera */
}
#loader-wrapper .loader-section.section-left {
  left: 0;
}
#loader-wrapper .loader-section.section-right {
  right: 0;
}
/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateY(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(100%);
  /* IE 9 */
  transform: translateY(100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateY(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(100%);
  /* IE 9 */
  transform: translateY(100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(100%);
  /* IE 9 */
  transform: translateY(100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}
/* JavaScript Turned Off */
.no-js #loader-wrapper {
  display: none;
}
/* EOF preloader */
.mod-languages {
  padding-top: 16px;
}
/* mobil menü */
.mobilemenuck .undefined {
  display: none;
}
.mobilemenuck > .mobilemenuck-item {
  margin: 0 20px;
}
.mobilemenuck > .mobilemenuck-item:nth-last-of-type(-n+2) {
  width: 60px;
  padding-top: 20px;
  margin: 0 auto;
}
.mobilemenuck > .mobilemenuck-item:nth-last-of-type(-n+2) .mod-languages {
  padding-top: 15px;
}
.mobilemenuck .mobilemenuck-submenu {
  padding-left: 15px;
}
/* EOF mobil menü 

/* termék lista */
.product-list {
  margin-bottom: 60px;
}
.product-list .product .image {
  max-height: 200px;
  overflow: hidden;
  display: flex;
}
.product-list .product .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-list .product .introtext ul li {
  padding-left: 20px;
}
.product-list .product .introtext ul li::before {
  height: 10px;
  width: 10px;
  background: var(--blue);
  margin-right: 10px;
  margin-left: -20px;
  content: '';
  border-radius: 50%;
  display: inline-block;
}
.item-page .termekek h1 {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  text-align: center;
  margin: 30px 0 20px;
}
.item-page .termekek h2 {
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
}
.item-page .termekek .content > p {
  padding: 0 15px;
}
/* EOF termék lista */
/* védett munkahely */
.vedett-munkahely {
  background-color: var(--light-blue);
  padding: 30px 0;
  color: var(--darkText);
}
/* EOF védett munkahely */
/* breadcrumb */
.breadcrumbModule {
  background-color: var(--blue);
  color: var(--white);
}
.breadcrumbModule a {
  color: var(--yellow);
}
/* EOF breadcrumb */
/* összes termék */
.moduletable.osszes-termek .mod-articles-category-group {
  display: none;
}
.moduletable.osszes-termek > ul > li {
  margin-bottom: 20px;
}
/* EOF összes termék */
.accessible-icon {
  background: url("../images/accessibility-eye-light.jpg") no-repeat center center;
  width: 25px;
  height: 25px;
  background-size: contain;
  position: relative;
  top: 6px;
}
div#maximenuck91 ul.maximenuck li.maximenuck.level1:hover, div#maximenuck95 ul.maximenuck li.maximenuck.level1:hover {
  background: none;
}
.item191, .item192 {
  margin-left: 20px;
}
/* black - yellow */
body.black {
  background-color: var(--black);
  overflow: auto;
}
body.black .accessible-icon {
  background: url("../images/accessibility-eye.jpg") no-repeat center center;
  background-size: contain;
}
body.black .swiper-container .swiper-caption, body.black .vedett-munkahely, body.black .fooldalTevekenysegek li:nth-child(even), body.black header nav, body.black header nav li, body.black header nav li span, body.black header nav li a, body.black div#maximenuck95.maximenuckh ul.maximenuck, body.black div#maximenuck95.maximenuckh ul.maximenuck li.maximenuck div.floatck, body.black div#maximenuck91.maximenuckh ul.maximenuck, body.black div#maximenuck91.maximenuckh ul.maximenuck li.maximenuck div.floatck, body.black .breadcrumbModule, body.black .header-with-bg.blue, body.black .contactPage .elerhetosegek button, body.black div#maximenuck91 ul.maximenuck li.maximenuck.level1:hover, body.black div#maximenuck95 ul.maximenuck li.maximenuck.level1:hover {
  background-color: var(--black);
}
body.black img, body.black .product-list .product .image {
  display: none;
}
body.black .fooldalFejlecBg, body.black .fooldalAjanlatkeres, body.black a.btn.btn-yellow, body.black button.btn-yellow, body.black a.btn.btn-blue, body.black button.btn-blue, body.black .kekHatter {
  background: none;
}
body.black .mod-languages img {
  display: block;
  padding-top: 15px;
}
body.black .swiper-desc img {
  display: inline-block;
}
body.black div, body.black p, body.black a, body.black a:hover, body.black .swiper-container h1, body.black .fooldal3oszlop h1 span, body.black .fooldal3oszlop h2.blue, body.black .blue, body.black .dark, body.black .fooldalFejlecBg .fejlecText, body.black header nav li span, body.black a.btn.btn-yellow i, body.black button.btn-yellow i, body.black a.btn.btn-yellow, body.black button.btn-yellow a, body.black a.btn.btn-blue, body.black button.btn-blue, body.black .kekHatter, body.black .contactModule h2, body.black .breadcrumbModule, body.black .contactPage .cimek h2, body.black .ui.form .field > label, body.black .ui.form .required.field > label:after, body.black .contactPage .elerhetosegek button {
  color: var(--yellow);
}
body.black a, body.black header nav li span {
  text-decoration: underline;
}
body.black .fooldalFejlec {
  text-align: center;
}
body.black .swiper-button-next {
  background: url("../images/right-chevron.svg") no-repeat center center;
}
body.black .swiper-button-prev {
  background: url("../images/left-chevron.svg") no-repeat center center;
}
body.black div#maximenuck95.maximenuckh ul.maximenuck li.maximenuck.level1.active, body.black div#maximenuck95.maximenuckh ul.maximenuck li.maximenuck.level1:hover, body.black div#maximenuck95.maximenuckh ul.maximenuck li.maximenuck.level1.parent:hover, body.black div#maximenuck91.maximenuckh ul.maximenuck li.maximenuck.level1.active, body.black div#maximenuck91.maximenuckh ul.maximenuck li.maximenuck.level1:hover, body.black div#maximenuck91.maximenuckh ul.maximenuck li.maximenuck.level1.parent:hover {
  border-top: var(--yellow) 4px solid !important;
}
body.black .product > div {
  flex: 0 0 100% !important;
  max-width: 100%;
}
body.black .addressContainer {
  margin-top: 420px;
}
body.black .addressContainer button {
  display: none;
}
body.black .contactPage .elerhetosegek button {
  border: 1px solid var(--yellow);
}
body.black .mobilemenuck-title, body.black div.mobilemenuck-bar-title, body.black .mobilemenuck-bar-button {
  background: var(--black) !important;
  border: 1px solid var(--yellow) !important;
  color: var(--yellow) !important;
}
body.black .mobilemenuck {
  background: var(--black);
}
body.black .mobilemenuck .mobilemenuck-item .level1, body.black .mobilemenuck .mobilemenuck-item .level2 {
  background: var(--black);
  border: 1px solid var(--yellow);
}
body.black .mobilemenuck .mobilemenuck-item .level1 a, body.black .mobilemenuck .mobilemenuck-item .level2 a {
  color: var(--yellow);
}
/* EOF black - yellow */
@media (min-width: 992px) and (max-width: 1200px) {
  .contactPage .cimek .bpImageContainer iframe, .contactPage .cimek .ntImageContainer iframe {
    height: 350px;
  }
  .fooldalFejlecBg, subBg {
    margin-top: 38px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .contactPage .kollegak > div p:nth-child(3) {
    height: calc(var(--lh-normal) * 2);
  }
}
@media (max-width: 1200px) {
  header {
    top: 0;
    position: absolute;
    width: 100%;
  }
  header nav {
    top: 60px !important;
    height: 50px !important;
  }
  header nav img {
    transform: scale(0.5);
  }
}
@media (max-width: 991px) {
  .fooldalFejlecBg, .subBg {
    margin-top: 70px;
  }
  .custom.logo {
    text-align: center;
    margin: 0 auto;
  }
  nav.navbar {
    height: 85px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contactPage .cimek .bpImageContainer iframe, .contactPage .cimek .ntImageContainer iframe {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .contactPage .kollegak {
    margin-top: 0;
  }
  .contactPage .kollegak > div {
    margin-bottom: 25px;
  }
  .contactPage .kollegak img {
    margin-top: 60px;
    width: 30%;
  }
  .contactPage .cimek .addressContainer {
    margin-top: 40px;
  }
  .contactPage .cimek .addressContainer button#bp {
    position: relative;
    margin-bottom: 60px;
  }
  .contactModule {
    text-align: center;
  }
  .fooldalTevekenysegek .col-md-6 {
    margin-bottom: 40px;
  }
  #sliderck99 {
    height: 550px !important;
  }
  .item-page .termekek .product .image {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .contactPage .cimek .bpImageContainer, .contactPage .cimek .ntImageContainer {
    height: 250px;
  }
  .contactPage .cimek .bpImageContainer iframe, .contactPage .cimek .ntImageContainer iframe {
    height: 250px;
  }
  .fooldalAjanlatkeres {
    height: auto;
    padding: 20px 0;
  }
  .fooldalFejlecBg {
    padding: 15px;
    margin-top: 105px;
  }
  header .logo a span {
    font-size: calc(var(--fs-normal) * 1.05);
  }
}
/*# sourceMappingURL=/templates/tantusz/css/template.css.map */